Skip to content

Commit

Permalink
Adding dashes for passing arguments to scripts
Browse files Browse the repository at this point in the history
Adding some missing dashes required to pass the configuration in the right way to "development configurations in package.json. Otherwise Unknown command or entry development  is thrown
---
Close #1624
  • Loading branch information
vidorteg committed Jul 17, 2023
1 parent 3180ad9 commit e0cc09c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -661,9 +661,9 @@
"package": "vsce package --out vscode-edge-devtools.vsix",
"vscode:prepublish": "npm run build && npm run lint",
"build": "webpack",
"build-debug": "npm run build --mode development --env debug",
"build-debug": "npm run build -- --mode development --env debug",
"build-edge-watch": "npm run build-debug -- --env devtoolsBaseUri=http://localhost:3000/vscode_app.html",
"build-watch": "npm run build --mode development && npm run watch",
"build-watch": "npm run build -- --mode development && npm run watch",
"build-and-lint": "npm run build && npm run lint",
"watch": "npm run watch-wp",
"watch-wp": "webpack --watch",
Expand Down

0 comments on commit e0cc09c

Please sign in to comment.