Skip to content

Commit

Permalink
npm update
Browse files Browse the repository at this point in the history
  • Loading branch information
matepek committed Oct 22, 2022
1 parent 63f8ee0 commit 182c1ee
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 55 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node
12 changes: 10 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ npx mocha ./out/test/Documentation.test.js ./out/test/ESLint.test.js
### Install

```bash
nvm use
npm install
```

Expand Down Expand Up @@ -81,9 +82,16 @@ If you think your changes worth of a release add a new version entry to `CHANGEL
- https://code.visualstudio.com/api/working-with-extensions/publishing-extension
- https://matepek.visualstudio.com/_usersSettings/tokens

## VSCode API
## VSCode API Change tracking tool

https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.d.ts
```bash
LAST_CHECKED_VERSION="1.72.2" && \
curl "https://raw.githubusercontent.com/microsoft/vscode/${LAST_CHECKED_VERSION}/src/vscode-dts/vscode.d.ts" \
--output "./out/latest_checked.vscode.d.ts" && \
curl "https://raw.githubusercontent.com/microsoft/vscode/main/src/vscode-dts/vscode.d.ts" \
--output "./out/latest.vscode.d.ts" && \
bcomp "./out/latest_checked.vscode.d.ts" "./out/latest.vscode.d.ts"
```

## VSCODE TESTING API

Expand Down
70 changes: 35 additions & 35 deletions package-lock.json

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

36 changes: 18 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,41 +61,41 @@
},
"devDependencies": {
"@types/bent": "^7.3.2",
"@types/chai": "^4.3.1",
"@types/chai": "^4.3.3",
"@types/deep-equal": "^1.0.1",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.5",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.3",
"@types/request-promise": "4.1.48",
"@types/sinon": "^10.0.12",
"@types/source-map-support": "^0.5.4",
"@types/sinon": "^10.0.13",
"@types/source-map-support": "^0.5.6",
"@types/vscode": "1.65.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"@vscode/test-electron": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vscode/test-electron": "^2.2.0",
"bent": "^7.3.12",
"deep-equal": "^2.0.5",
"eslint": "^8.20.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "4.2.1",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"mocha": "^10.1.0",
"mocha-eslint": "^7.0.0",
"prettier": "^2.7.1",
"raw-loader": "^4.0.2",
"sinon": "^14.0.0",
"sinon": "^14.0.1",
"source-map-support": "^0.5.21",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"vsce": "2.7.0",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"vsce": "2.13.0",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.6.1",
"webpack-cli": "^4.10.0"
},
"engines": {
"vscode": "^1.65.0"
"vscode": "1.65.0"
},
"activationEvents": [
"onStartupFinished"
Expand Down

0 comments on commit 182c1ee

Please sign in to comment.