Skip to content

Commit

Permalink
chore: bump dependencies (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzhao271 authored Nov 19, 2024
1 parent 7782381 commit b36c862
Show file tree
Hide file tree
Showing 5 changed files with 289 additions and 499 deletions.
17 changes: 10 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
// Place your settings in this file to overwrite default and user settings.
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.js": {
"when": "$(basename).ts"
}
},
"**/.DS_Store": true,
"**/.git": true
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"files.trimTrailingWhitespace": true,
"git.branchProtection": [
"main"
],
"githubIssues.queries": [
{
"label": "Recent Issues",
"query": "state:open repo:${owner}/${repository} sort:updated-desc"
}
],
"prettier.semi": true
}
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"prepack": "tsc -p ./",
"fmt": "prettier --write \"lib/**/*.{ts,mts}\" \"*.md\"",
"test": "eslint \"lib/**/*.{ts,mts}\" && vitest && tsc --noEmit",
"prepare": "husky install"
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
Expand All @@ -26,7 +26,7 @@
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"jszip": "^3.10.1",
"ora": "^7.0.1",
"ora": "^8.1.0",
"semver": "^7.6.2"
},
"devDependencies": {
Expand All @@ -51,4 +51,4 @@
"bugs": {
"url": "https://github.com/Microsoft/vscode-test/issues"
}
}
}
76 changes: 38 additions & 38 deletions sample/package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{
"name": "vscode-test-sample",
"displayName": "vscode-test-sample",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.helloWorld"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "extension.helloWorld",
"title": "Hello World"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "cd .. && tsc && cd sample && tsc && node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^18",
"@types/vscode": "^1.52.0",
"glob": "^10.3.10",
"mocha": "^8.2.1",
"typescript": "^5.4.5"
},
"dependencies": {}
}
"name": "vscode-test-sample",
"displayName": "vscode-test-sample",
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.helloWorld"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "extension.helloWorld",
"title": "Hello World"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "cd .. && tsc && cd sample && tsc && node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"@types/node": "^20",
"@types/vscode": "^1.52.0",
"glob": "^10.3.10",
"mocha": "^10.0.0",
"typescript": "^5.4.5"
},
"dependencies": {}
}
Loading

0 comments on commit b36c862

Please sign in to comment.