-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bug fix * bug fix --------- Co-authored-by: Nagarjun Sanji <[email protected]>
- Loading branch information
1 parent
a99bb45
commit 06a97b6
Showing
4 changed files
with
11 additions
and
13 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
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
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
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 |
---|---|---|
|
@@ -115,7 +115,7 @@ | |
"vscode:prepublish": "npm run package", | ||
"compile": "npm run check-types && npm run lint && node esbuild.js", | ||
"watch": "npm-run-all -p watch:*", | ||
"watch:esbuild": "node esbuild.js --watch", | ||
"watch:esbuild": "set NODE_ENV=development && set LATEST_TAG=0.0.0&& node esbuild.js --watch", | ||
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json", | ||
"package": "npm run check-types && npm run lint && node esbuild.js --production", | ||
"compile-tests": "npm run clean && tsc -p . --outDir out", | ||
|
@@ -129,7 +129,7 @@ | |
"clean-all": "rimraf out && rimraf dist && rimraf coverage && rimraf .vscode-test", | ||
"vsce": "vsce package", | ||
"madge": "npm run compile-tests && rimraf out\\test && madge --include-npm --image graph.svg out", | ||
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org debricked --project visual-studio-code-extensions out && sentry-cli --url https://sentry.debricked.com/ sourcemaps upload --org debricked --project visual-studio-code-extensions out" | ||
"sentry:sourcemaps": "sentry-cli --url https://sentry.debricked.com/ sourcemaps upload --org debricked --project visual-studio-code-extensions out --release [email protected]" | ||
}, | ||
"devDependencies": { | ||
"@sentry/cli": "^2.36.1", | ||
|