Skip to content

Commit

Permalink
Move "vscode" out of required dependencies for npm package (#21701)
Browse files Browse the repository at this point in the history
Closes #21684
  • Loading branch information
Kartik Raj committed Jul 27, 2023
1 parent d673004 commit 83107cc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
17 changes: 10 additions & 7 deletions pythonExtensionApi/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions pythonExtensionApi/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vscode/python-extension",
"description": "An API facade for the Python extension in VS Code",
"version": "1.0.1",
"version": "1.0.2",
"author": {
"name": "Microsoft Corporation"
},
Expand All @@ -25,11 +25,12 @@
"bugs": {
"url": "https://github.com/Microsoft/vscode-python/issues"
},
"dependencies": {
"peerDependencies": {
"@types/vscode": "^1.78.0"
},
"devDependencies": {
"typescript": "5.0.4"
"typescript": "5.0.4",
"@types/vscode": "^1.78.0"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/fail",
Expand Down

0 comments on commit 83107cc

Please sign in to comment.