Skip to content

Commit

Permalink
Update VS Code engine and @types/vscode for APIs (#24335)
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig authored Oct 28, 2024
1 parent 40b29bf commit 205a19e
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 38 deletions.
40 changes: 21 additions & 19 deletions pythonExtensionApi/package-lock.json

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

38 changes: 19 additions & 19 deletions pythonExtensionApi/package.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
{
"name": "@vscode/python-extension",
"description": "An API facade for the Python extension in VS Code",
"version": "1.0.5",
"version": "1.0.6",
"author": {
"name": "Microsoft Corporation"
"name": "Microsoft Corporation"
},
"keywords": [
"Python",
"VSCode",
"API"
],
"main": "./out/main.js",
"types": "./out/main.d.ts",
"engines": {
"node": ">=18.17.1",
"vscode": "^1.78.0"
},
"VSCode",
"API"
],
"main": "./out/main.js",
"types": "./out/main.d.ts",
"engines": {
"node": ">=18.17.1",
"vscode": "^1.93.0"
},
"license": "MIT",
"homepage": "https://github.com/microsoft/vscode-python/tree/main/pythonExtensionApi",
"repository": {
Expand All @@ -26,18 +26,18 @@
"url": "https://github.com/Microsoft/vscode-python/issues"
},
"devDependencies": {
"typescript": "5.0.4",
"@types/vscode": "^1.78.0",
"typescript": "~5.2",
"@types/vscode": "^1.93.0",
"source-map": "^0.8.0-beta.0"
},
"scripts": {
"prepublishOnly": "echo \"⛔ Can only publish from a secure pipeline ⛔\" && node ../build/fail",
"prepack": "npm run all:publish",
"compile": "node ./node_modules/typescript/lib/tsc.js -b ./tsconfig.json",
"clean": "node ../node_modules/rimraf/bin.js out",
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
"all": "npm run clean && npm run compile",
"prepack": "npm run all:publish",
"compile": "node ./node_modules/typescript/lib/tsc.js -b ./tsconfig.json",
"clean": "node ../node_modules/rimraf/bin.js out",
"lint": "node ../node_modules/eslint/bin/eslint.js --ext ts src",
"all": "npm run clean && npm run compile",
"formatTypings": "node ../node_modules/eslint/bin/eslint.js --fix ./out/main.d.ts",
"all:publish": "git clean -xfd . && npm install && npm run compile && npm run formatTypings"
"all:publish": "git clean -xfd . && npm install && npm run compile && npm run formatTypings"
}
}

0 comments on commit 205a19e

Please sign in to comment.