Skip to content

Commit

Permalink
chore: fix ts plugin release script
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Jun 16, 2023
1 parent a85aa4d commit d454fd3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/vscode-typescript-vue-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"vscode:prepublish": "npm run build && sed -i '' '/\"typescript-vue-plugin-forward\": \"file:typescript-vue-plugin-forward\"/d' package.json",
"prebuild": "cd ../.. && npm run build",
"build": "npm run esbuild",
"watch": "npm run esbuild -- --watch",
"esbuild": "node scripts/build-node",
"pack": "vsce package",
"release": "vsce publish",
"release:next": "vsce publish --pre-release"
"build": "node scripts/build",
"watch": "node scripts/build --watch",
"pack": "vsce package && npm run reset",
"release": "vsce publish && npm run reset",
"release:next": "vsce publish --pre-release && npm run reset",
"reset": "git checkout package.json"
},
"dependencies": {
"typescript-vue-plugin-forward": "file:typescript-vue-plugin-forward"
Expand Down

0 comments on commit d454fd3

Please sign in to comment.