Skip to content

Commit

Permalink
Restored npm script to publish locally and github release
Browse files Browse the repository at this point in the history
  • Loading branch information
jakenuts committed Dec 13, 2024
1 parent a790169 commit 068ebd7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,9 @@
"start:webview": "cd webview-ui && npm run start",
"build:webview": "cd webview-ui && npm run build",
"test:webview": "cd webview-ui && npm run test",
"publish:marketplace": "vsce publish && ovsx publish"
"publish:marketplace": "vsce publish && ovsx publish",
"vscode:build-and-package": "npm run build:webview && npm run compile && npm run package && vsce package",
"github:tag-and-release": "pwsh tool-publish-new-release.ps1"
},
"devDependencies": {
"@types/diff": "^5.2.1",
Expand Down
6 changes: 5 additions & 1 deletion tool-build-package.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#npm install -g @vscode/vsce
rm *.vsix

#npm run compile
#npm run build:webview

rm *.vsix

npm run install:all
npm run package
npx vsce package #--no-dependencies

0 comments on commit 068ebd7

Please sign in to comment.