Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update VS Code engine and @types/vscode for APIs #24335

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
}
Loading