Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenWeatherford committed Jul 22, 2024
1 parent 9d0ef42 commit 871260e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "npm: pretest-release",
"preLaunchTask": "npm: pretest-prod",
"env": {
"MOCHA_grep": "", // RegExp of tests to run (empty for all) -- works for F5 only asdfg?
"MOCHA_invert": "0", // Invert the RegExp
Expand Down
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -620,13 +620,14 @@
"lint": "",
"$lint-fix": "tslint --project tsconfig.json -t verbose --fix",
"package": "npm run webpack-prod && npm run get-language-server && gulp package",
"pretest": "npm run pretest-release",
"pretest-release": "npm run webpack-prod && gulp pretest",
"pretest": "npm run pretest-prod",
"pretest-prod": "npm run webpack-prod && gulp pretest",
"pretest-dev": "npm run webpack && gulp pretest",
"$test.comment": "Runs tests from the webpacked extension. If you want to run tests from the source code directly, run from without vscode.",
"test": "node ./dist/test/runTest.js",
"all": "npm i && npm test && npm run lint",
"webpack": "gulp webpack-dev",
"webpack": "gulp webpack-prod",
"webpack-dev": "gulp webpack-dev",
"webpack-prod": "gulp webpack-prod",
"webpack-profile": "webpack --profile --json --mode production > webpack-stats.json && echo Use http://webpack.github.io/analyse to analyze the stats",
"build-grammars": "gulp build-grammars",
Expand Down

0 comments on commit 871260e

Please sign in to comment.