Skip to content

Commit

Permalink
Renaming from compile to build.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennykorsukewitz committed Mar 14, 2024
1 parent 08aa066 commit 928069e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: compile"
"preLaunchTask": "npm: build"
},
{
"name": "Run Web Extension",
Expand All @@ -29,7 +29,7 @@
"outFiles": [
"${workspaceFolder}/out/web/**/*.js"
],
"preLaunchTask": "npm: compile-web"
"preLaunchTask": "npm: build-web"
},
{
"name": "Run Tests",
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./",
"compile-web": "npm run esbuild-base -- --sourcemap",
"build": "tsc -p ./",
"build-web": "npm run esbuild-base -- --sourcemap",
"lint": "eslint src --ext ts",
"lint-fix": "eslint src --ext ts --fix",
"pretest": "rm -Rf .vscode-test && npm run compile && npm run lint",
"pretest": "rm -Rf .vscode-test && npm run build && npm run lint",
"test": "node ./dist/test/runTest.js",
"open-in-browser": "npm run compile-web && npx @vscode/test-web --extensionDevelopmentPath=."
"open-in-browser": "npm run build-web && npx @vscode/test-web --extensionDevelopmentPath=."
},
"devDependencies": {
"@types/glob": "^8.1.0",
Expand Down

0 comments on commit 928069e

Please sign in to comment.