Skip to content

Commit 6dff8b8

Browse files
Add publisher and repository fields to package.json (#14)
## Description Adds a publisher and repository information to the package.json file. Resolves the issue of having a strange extension ID. Before the change <img width="365" height="194" alt="image" src="https://github.com/user-attachments/assets/65806edc-1ef8-469b-8c85-0fe7cd320376" /> After the change <img width="380" height="228" alt="image" src="https://github.com/user-attachments/assets/96dd6a3b-e379-4dbf-800a-e249dd6e48fe" /> ## Type of Change - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) - [x] Documentation update - [ ] Refactoring (no functional changes) - [ ] Performance improvement - [ ] Test improvement ## Component(s) Affected - [ ] Language Server (ULSP) - [ ] SCIP Generation (Python utilities) - [x] VS Code/Cursor Extension - [ ] Java Aggregator - [ ] Build System (Bazel) - [ ] Documentation - [ ] Tests ## Testing - [x] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes (`bazel test //...`) - [x] I have tested this manually with a real project ### Manual Testing Details Describe how you tested these changes: - IDE used for testing: vscode - Project(s) tested against: internal company repo - Specific features/scenarios verified: extension metadata ## Checklist - [ ] My code follows the existing code style and conventions - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] I have updated BUILD.bazel files if I added new source files - [ ] My changes generate no new warnings - [ ] Any dependent changes have been merged and published ## Screenshots/Logs (if applicable) Can see reflected metadata. <img width="380" height="228" alt="image" src="https://github.com/user-attachments/assets/96dd6a3b-e379-4dbf-800a-e249dd6e48fe" /> ## Related Issues Fixes #(issue number) Closes #(issue number) Related to #(issue number) ## Additional Notes Any additional information that reviewers should know about this PR.
1 parent f1497a2 commit 6dff8b8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/extension/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"displayName": "SCIP LSP Extension",
44
"description": "SCIP based language server with support for Bazel",
55
"version": "0.0.1",
6+
"publisher": "uber",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/uber/scip-lsp.git"
10+
},
611
"license": "MIT",
712
"engines": {
813
"vscode": "^1.90.0"

0 commit comments

Comments
 (0)