Fix run scripts for windows

Apparently, windows doesn't like single quotes in some cases.
This commit is contained in:
Kevin Raoofi 2020-10-06 15:25:22 -04:00
parent d56995403c
commit cb59fc52f3

View file

@ -3,10 +3,10 @@
"version": "1.5.4", "version": "1.5.4",
"license": "GPL-3.0", "license": "GPL-3.0",
"scripts": { "scripts": {
"build:assets": "cpx 'src/**/*.{json,png}' dist/", "build:assets": "cpx \"src/**/*.{json,png}\" dist/",
"watch:assets": "cpx --watch -v 'src/**/*.{json,png}' dist/", "watch:assets": "cpx --watch -v \"src/**/*.{json,png}\" dist/",
"build:parcel": "cross-env NODE_ENV=production parcel build --no-source-maps 'src/scripts/*.{js,ts}' 'src/**/*.html'", "build:parcel": "cross-env NODE_ENV=production parcel build --no-source-maps \"src/scripts/*.{js,ts}\" \"src/**/*.html\"",
"watch:parcel": "parcel watch --no-hmr --no-source-maps 'src/scripts/*.{js,ts}' 'src/**/*.html'", "watch:parcel": "parcel watch --no-hmr --no-source-maps \"src/scripts/*.{js,ts}\" \"src/**/*.html\"",
"build": "npm-run-all -l -p build:parcel build:assets", "build": "npm-run-all -l -p build:parcel build:assets",
"watch": "npm-run-all -l -p watch:parcel watch:assets", "watch": "npm-run-all -l -p watch:parcel watch:assets",
"start:chrome": "web-ext run -t chromium --source-dir ./dist", "start:chrome": "web-ext run -t chromium --source-dir ./dist",