-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b902aca
commit 7dd6567
Showing
1 changed file
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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", | ||
|