Skip to content

Commit fcd6cbd

Browse files
authored
Remove npm --prefix from angular template (microsoft#99)
fix for npm --prefix generating garbage files in webview-ui folder microsoft#98
1 parent 4cbb367 commit fcd6cbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

frameworks/hello-world-angular/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
]
2323
},
2424
"scripts": {
25-
"install:all": "npm install && npm --prefix ./webview-ui install ./webview-ui",
26-
"start:webview": "npm --prefix ./webview-ui run start",
27-
"build:webview": "npm --prefix ./webview-ui run build",
25+
"install:all": "npm install && cd webview-ui && npm install",
26+
"start:webview": "cd webview-ui && npm run start",
27+
"build:webview": "cd webview-ui && npm run build",
2828
"vscode:prepublish": "npm run compile",
2929
"compile": "tsc -p ./",
3030
"watch": "tsc -watch -p ./",

0 commit comments

Comments
 (0)