Skip to content

Commit

Permalink
Merge pull request #201 from zardoy/develop
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy authored Feb 15, 2024
2 parents 0f8f279 + aa00ca2 commit bed9a06
Show file tree
Hide file tree
Showing 11 changed files with 269 additions and 139 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,12 @@ jobs:
OVSX_PAT: ${{ secrets.OVSX_PAT }}
# optional
EXTENSION_ICON: ${{ secrets.EXTENSION_ICON }}
- name: Set publishing config
run: pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}"
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
- run: node typescript/npm/beforePublish.mjs
- run: pnpm publish --access public
working-directory: typescript
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
14 changes: 9 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@
{
"command": "wrapIntoNewTag",
"title": "Wrap Into New Tag"
},
{
"command": "searchWorkspaceBySyntaxKind",
"title": "Search Workspace by Syntax Kind"
}
],
"keybindings": [
Expand Down Expand Up @@ -127,6 +131,7 @@
"watch-plugin": "node buildTsPlugin.mjs --watch",
"build": "tsc && tsc -p typescript --noEmit && vscode-framework build && pnpm build-plugin",
"build-plugin": "node buildTsPlugin.mjs && node buildTsPlugin.mjs --browser",
"build-plugin:npm": "tsc -p typescript/tsconfig.npm.json",
"lint": "eslint {src/**,typescript/src/**}",
"test": "pnpm test-plugin --run && pnpm integration-test",
"test-plugin": "vitest --globals --dir typescript/test/ --environment ts-plugin",
Expand Down Expand Up @@ -154,7 +159,10 @@
"vite": "^4.1.1",
"vitest": "^0.34.6",
"vitest-environment-ts-plugin": "./vitest-environment-ts-plugin",
"vscode-manifest": "^0.0.4"
"vscode-manifest": "^0.0.4",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"npm-run-all": "^4.1.5"
},
"pnpm": {
"overrides": {
Expand All @@ -176,8 +184,6 @@
"@zardoy/vscode-utils": "^0.0.52",
"chai": "^4.3.6",
"change-case": "^4.1.2",
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"delay": "^5.0.0",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.56.0",
Expand All @@ -187,8 +193,6 @@
"lodash.get": "^4.4.2",
"lodash.throttle": "^4.1.1",
"mocha": "^10.0.0",
"modify-json-file": "^1.2.2",
"npm-run-all": "^4.1.5",
"path-browserify": "^1.0.1",
"pluralize": "github:plurals/pluralize#36f03cd2d573fa6d23e12e1529fa4627e2af74b4",
"rambda": "^7.2.1",
Expand Down
Loading

0 comments on commit bed9a06

Please sign in to comment.