Skip to content

Commit 1c66eaa

Browse files
committed
Fix install loop
1 parent 85ec0b5 commit 1c66eaa

File tree

3 files changed

+2
-6
lines changed

3 files changed

+2
-6
lines changed

.vscode/tasks.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
1-
// See https://go.microsoft.com/fwlink/?LinkId=733558
2-
// for the documentation about the tasks.json format
31
{
42
"version": "2.0.0",
53
"tasks": [
64
{
75
"type": "npm",
86
"label": "npm: install",
9-
"script": "install",
7+
"script": "install-deps", // this also installs the frontend dependencies
108
"runOptions": {
119
"runOn": "folderOpen"
1210
}

package-lock.json

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@
7171
"pretest": "npm run compile-tests && npm run compile && npm run lint",
7272
"test": "vscode-test",
7373
"build": "npm run compile-all",
74-
"install-deps": "npm i && cd frontend && npm i",
75-
"install": "npm install"
74+
"install-deps": "npm i && cd frontend && npm i"
7675
},
7776
"devDependencies": {
7877
"@types/mocha": "^10.0.7",

0 commit comments

Comments
 (0)