Skip to content

Commit

Permalink
fix: esbuild対応
Browse files Browse the repository at this point in the history
  • Loading branch information
taizod1024 committed Oct 14, 2021
1 parent b902aca commit 7dd6567
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,18 @@
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"[OLD]vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./build/test/runTest.js",
"release": "git switch main && git merge --no-ff develop && npx standard-version && vsce publish && git push --follow-tags origin main && git push origin develop && git switch develop"
"release": "git switch main && git merge --no-ff develop && npx standard-version && vsce publish && git push --follow-tags origin main && git push origin develop && git switch develop",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=build/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"author": "yamamoto.taizo <[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit 7dd6567

Please sign in to comment.