Skip to content

Commit

Permalink
Merge pull request #37 from claui/update-vsce
Browse files Browse the repository at this point in the history
Fix regression that kept the vsce patch from being applied
  • Loading branch information
claui authored Sep 11, 2024
2 parents e0b8d15 + 1b159b2 commit cd2a2ff
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 7 deletions.
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@types/vscode": "=1.92",
"@typescript-eslint/eslint-plugin": "<=7.x",
"@typescript-eslint/parser": "<=7.x",
"@vscode/vsce": "=2.21.0",
"@vscode/vsce": "^2.21.1",
"del-cli": "^5.1.0",
"esbuild": "^0.23.1",
"esbuild-copy-static-files": "^0.1.0",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"test": "true yarn workspace packaging test",
"upgrade-all": "printf >&2 '%s\\n\\t%s\\n' 'Run the following command line manually:' 'yarn set version 4 && yarn install && yarn upgrade-packages' && false",
"upgrade-lockfile": "yarn up -R '**' && yarn clean-install",
"upgrade-packages": "yarn up '**' '@types/node@<=20.x' '@types/vscode@=1.92' '@typescript-eslint/eslint-plugin@<=7.x' '@typescript-eslint/parser@<=7.x' '@vscode/vsce@=2.21.0' '@yarnpkg/sdks@^3.1.0' 'eslint@<=8.x' 'typescript@<=5.5.x' && yarn up -R '**' && yarn clean-install",
"upgrade-packages": "yarn up '**' '@types/node@<=20.x' '@types/vscode@=1.92' '@typescript-eslint/eslint-plugin@<=7.x' '@typescript-eslint/parser@<=7.x' '@vscode/vsce@^2.21.1' '@yarnpkg/sdks@^3.1.0' 'eslint@<=8.x' 'typescript@<=5.5.x' && yarn up -R '**' && yarn clean-install",
"upgrade-yarn-itself": "printf >&2 '%s\\n\\t%s\\n' 'Run the following command line manually:' 'yarn set version 4 && yarn install && yarn clean-install' && false"
},
"workspaces": [
Expand Down
44 changes: 39 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1733,9 +1733,9 @@ __metadata:
languageName: node
linkType: hard

"@vscode/vsce@npm:=2.21.0":
version: 2.21.0
resolution: "@vscode/vsce@npm:2.21.0"
"@vscode/vsce@npm:2.21.1":
version: 2.21.1
resolution: "@vscode/vsce@npm:2.21.1"
dependencies:
azure-devops-node-api: "npm:^11.0.1"
chalk: "npm:^2.4.2"
Expand Down Expand Up @@ -1763,7 +1763,7 @@ __metadata:
optional: true
bin:
vsce: vsce
checksum: 10c0/e3867e8ce58d5ac5f7e9f2a8a41b67c706c232f44370886a2b0ac2c303c5a5ec1ccda89943ad2cb500571aa48b50f48bd6e252305af5e760f9cd4803c41ab72e
checksum: 10c0/3f2fd3f09e6d232fc10093f7e62f7b9dd15f783ef8f2afbc0429dc868c9eb48e78f4dce40db472e84565b8e16d9723b70bfcb0a2b5f8c20b8de7cb8b9cbde26d
languageName: node
linkType: hard

Expand Down Expand Up @@ -1805,6 +1805,40 @@ __metadata:
languageName: node
linkType: hard

"@vscode/vsce@patch:@vscode/vsce@npm:2.21.1#./.yarn/patches/@vscode-vsce-npm-2.21.1.patch::locator=vscode-packaging%40workspace%3A.":
version: 2.21.1
resolution: "@vscode/vsce@patch:@vscode/vsce@npm%3A2.21.1#./.yarn/patches/@vscode-vsce-npm-2.21.1.patch::version=2.21.1&hash=76cb5f&locator=vscode-packaging%40workspace%3A."
dependencies:
azure-devops-node-api: "npm:^11.0.1"
chalk: "npm:^2.4.2"
cheerio: "npm:^1.0.0-rc.9"
commander: "npm:^6.2.1"
glob: "npm:^7.0.6"
hosted-git-info: "npm:^4.0.2"
jsonc-parser: "npm:^3.2.0"
keytar: "npm:^7.7.0"
leven: "npm:^3.1.0"
markdown-it: "npm:^12.3.2"
mime: "npm:^1.3.4"
minimatch: "npm:^3.0.3"
parse-semver: "npm:^1.1.1"
read: "npm:^1.0.7"
semver: "npm:^7.5.2"
tmp: "npm:^0.2.1"
typed-rest-client: "npm:^1.8.4"
url-join: "npm:^4.0.1"
xml2js: "npm:^0.5.0"
yauzl: "npm:^2.3.1"
yazl: "npm:^2.2.2"
dependenciesMeta:
keytar:
optional: true
bin:
vsce: vsce
checksum: 10c0/4b950728558bff38658b01bb0d15eb8c71e32be8d10e6850e8d0e50610631e1011ee7fb499ad37f95f205e5635c1bee756b3686b18bb415201ad49a7e19a20af
languageName: node
linkType: hard

"@yarnpkg/core@npm:^4.1.2":
version: 4.1.2
resolution: "@yarnpkg/core@npm:4.1.2"
Expand Down Expand Up @@ -3432,7 +3466,7 @@ __metadata:
"@types/vscode": "npm:=1.92"
"@typescript-eslint/eslint-plugin": "npm:<=7.x"
"@typescript-eslint/parser": "npm:<=7.x"
"@vscode/vsce": "npm:=2.21.0"
"@vscode/vsce": "npm:^2.21.1"
del-cli: "npm:^5.1.0"
esbuild: "npm:^0.23.1"
esbuild-copy-static-files: "npm:^0.1.0"
Expand Down

0 comments on commit cd2a2ff

Please sign in to comment.