Skip to content

Commit

Permalink
fix(ci): Fix start-watch command (#2344)
Browse files Browse the repository at this point in the history
* Fix start-watch command

* replace escaped quotes after update from main

* Shorten the script

---------

Co-authored-by: Brian Thomas Smith <[email protected]>
  • Loading branch information
NiedziolkaMichal and bsmth authored Mar 6, 2023
1 parent 6401fe6 commit 6343ab5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "eslint ./live-examples/js-examples",
"start-server": "http-server -p 9090 ./docs",
"start-watch": "chokidar '**/{*.js,*.css,*.html,*.json}' -i 'package.json' -i 'docs/**' -i 'node_modules/**' -i 'js/editor-*.js' -c 'npm run build:pages' --initial --silent",
"start-watch": "chokidar \"./live-examples/**\" -c \"npm run build:pages\" --initial --silent",
"start": "npm-run-all --parallel start-watch start-server",
"test": "npm run lint:js"
},
Expand Down

0 comments on commit 6343ab5

Please sign in to comment.