clean up commands

This commit is contained in:
Liam DeBeasi
2023-11-02 17:21:23 -04:00
parent 8dffb5fc3b
commit 4492d985f5
4 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@
}, },
"scripts": { "scripts": {
"build": "npm run clean && npm run compile", "build": "npm run clean && npm run compile",
"build.watch": "npm run build && npm run compile -- --watch", "build.watch": "npm run compile -- --watch",
"clean": "rimraf dist", "clean": "rimraf dist",
"compile": "rollup -c", "compile": "rollup -c",
"eslint": "eslint src", "eslint": "eslint src",

View File

@ -21,7 +21,7 @@
}, },
"scripts": { "scripts": {
"build": "npm run clean && npm run copy && npm run compile", "build": "npm run clean && npm run copy && npm run compile",
"build.watch": "npm run build && npm run compile -- --watch", "build.watch": "npm run compile -- --watch",
"clean": "rimraf dist && rimraf routing", "clean": "rimraf dist && rimraf routing",
"compile": "rollup -c", "compile": "rollup -c",
"eslint": "eslint src", "eslint": "eslint src",

View File

@ -10,7 +10,7 @@
"lint.fix": "npm run eslint -- --fix && npm run prettier -- --write --cache", "lint.fix": "npm run eslint -- --fix && npm run prettier -- --write --cache",
"bundle": "rollup --config rollup.config.js", "bundle": "rollup --config rollup.config.js",
"build": "npm run clean && npm run bundle", "build": "npm run clean && npm run bundle",
"build.watch": "npm run build && npm run bundle -- --watch", "build.watch": "npm run bundle -- --watch",
"clean": "rimraf dist", "clean": "rimraf dist",
"sync": "sh ./scripts/sync.sh" "sync": "sh ./scripts/sync.sh"
}, },

View File

@ -9,7 +9,7 @@
"lint.fix": "npm run eslint -- --fix && npm run prettier -- --write --cache", "lint.fix": "npm run eslint -- --fix && npm run prettier -- --write --cache",
"test": "jest", "test": "jest",
"build": "npm run clean && npm run copy && npm run copy.overlays && npm run bundle && npm run build.vetur && npm run build.web-types", "build": "npm run clean && npm run copy && npm run copy.overlays && npm run bundle && npm run build.vetur && npm run build.web-types",
"build.watch": "npm run build && npm run bundle -- --watch", "build.watch": "npm run bundle -- --watch",
"bundle": "rollup --config rollup.config.js", "bundle": "rollup --config rollup.config.js",
"clean": "rimraf dist", "clean": "rimraf dist",
"build.web-types": "node ./scripts/build-web-types.js", "build.web-types": "node ./scripts/build-web-types.js",