1
0
Fork 0

better naming convention for build scripts. bring back build:all

This commit is contained in:
Enoch Riese 2023-07-23 11:19:30 -06:00
parent d613c842d6
commit 9c88b44501
79 changed files with 321 additions and 161 deletions

View file

@ -28,7 +28,8 @@
},
"scripts": {
"build": "node build.mjs",
"buildall": "node build.mjs",
"build:sitedeps": "yarn build",
"build:all": "yarn build",
"clean": "rimraf dist",
"mbuild": "NO_MINIFY=1 node build.mjs",
"symlink": "mkdir -p ./node_modules/@freesewing && cd ./node_modules/@freesewing && ln -s -f ../../../* . && cd -",
@ -38,7 +39,8 @@
"tips": "node ../../scripts/help.mjs",
"lint": "npx eslint 'src/**' 'tests/*.mjs'",
"wbuild": "node build.mjs",
"wbuildall": "node build.mjs"
"wbuild:sitedeps": "yarn wbuild",
"wbuild:all": "yarn wbuild"
},
"peerDependencies": {},
"dependencies": {},