Skip to content

Commit bed9a06

Browse files
authored
Merge pull request #201 from zardoy/develop
2 parents 0f8f279 + aa00ca2 commit bed9a06

File tree

11 files changed

+269
-139
lines changed

11 files changed

+269
-139
lines changed

.github/workflows/release.yml

+9
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,12 @@ jobs:
3232
OVSX_PAT: ${{ secrets.OVSX_PAT }}
3333
# optional
3434
EXTENSION_ICON: ${{ secrets.EXTENSION_ICON }}
35+
- name: Set publishing config
36+
run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
37+
env:
38+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
39+
- run: node typescript/npm/beforePublish.mjs
40+
- run: pnpm publish --access public
41+
working-directory: typescript
42+
env:
43+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

package.json

+9-5
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@
7878
{
7979
"command": "wrapIntoNewTag",
8080
"title": "Wrap Into New Tag"
81+
},
82+
{
83+
"command": "searchWorkspaceBySyntaxKind",
84+
"title": "Search Workspace by Syntax Kind"
8185
}
8286
],
8387
"keybindings": [
@@ -127,6 +131,7 @@
127131
"watch-plugin": "node buildTsPlugin.mjs --watch",
128132
"build": "tsc && tsc -p typescript --noEmit && vscode-framework build && pnpm build-plugin",
129133
"build-plugin": "node buildTsPlugin.mjs && node buildTsPlugin.mjs --browser",
134+
"build-plugin:npm": "tsc -p typescript/tsconfig.npm.json",
130135
"lint": "eslint {src/**,typescript/src/**}",
131136
"test": "pnpm test-plugin --run && pnpm integration-test",
132137
"test-plugin": "vitest --globals --dir typescript/test/ --environment ts-plugin",
@@ -154,7 +159,10 @@
154159
"vite": "^4.1.1",
155160
"vitest": "^0.34.6",
156161
"vitest-environment-ts-plugin": "./vitest-environment-ts-plugin",
157-
"vscode-manifest": "^0.0.4"
162+
"vscode-manifest": "^0.0.4",
163+
"chokidar": "^3.5.3",
164+
"chokidar-cli": "^3.0.0",
165+
"npm-run-all": "^4.1.5"
158166
},
159167
"pnpm": {
160168
"overrides": {
@@ -176,8 +184,6 @@
176184
"@zardoy/vscode-utils": "^0.0.52",
177185
"chai": "^4.3.6",
178186
"change-case": "^4.1.2",
179-
"chokidar": "^3.5.3",
180-
"chokidar-cli": "^3.0.0",
181187
"delay": "^5.0.0",
182188
"escape-string-regexp": "^5.0.0",
183189
"eslint": "^8.56.0",
@@ -187,8 +193,6 @@
187193
"lodash.get": "^4.4.2",
188194
"lodash.throttle": "^4.1.1",
189195
"mocha": "^10.0.0",
190-
"modify-json-file": "^1.2.2",
191-
"npm-run-all": "^4.1.5",
192196
"path-browserify": "^1.0.1",
193197
"pluralize": "github:plurals/pluralize#36f03cd2d573fa6d23e12e1529fa4627e2af74b4",
194198
"rambda": "^7.2.1",

0 commit comments

Comments
 (0)