chore: arg escaping

This commit is contained in:
cha0s 2024-02-12 06:28:05 -06:00
parent 38cf6725c2
commit e7249a3362
2 changed files with 5 additions and 5 deletions

View File

@ -7,12 +7,12 @@
"url": "git+https://github.com/cha0s/flecks.git"
},
"scripts": {
"build": "node build/tasks npm run build",
"build": "node build/tasks npm run -- build",
"dox:bump": "npm run dox:gh-pages && cd dox && git add . && git commit -m $(git -C .. rev-parse HEAD) && git push origin gh-pages",
"dox:gh-pages": "flecks dox docusaurus && cd website && DOCUSAURUS_GENERATED_FILES_DIR_NAME=node_modules/.cache/docusaurus node_modules/.bin/docusaurus build --out-dir ../dox-tmp && cd .. && rm -rf dox/* && mv dox-tmp/* dox && rmdir dox-tmp",
"dox:serve": "flecks dox docusaurus && cd website && DOCUSAURUS_GENERATED_FILES_DIR_NAME=node_modules/.cache/docusaurus node_modules/.bin/docusaurus build --no-minify --out-dir ../dox-tmp && node_modules/.bin/docusaurus serve --dir ../dox-tmp",
"dox": "flecks dox docusaurus && cd website && DOCUSAURUS_GENERATED_FILES_DIR_NAME=node_modules/.cache/docusaurus node_modules/.bin/docusaurus",
"lint": "node build/tasks npm run lint",
"lint": "node build/tasks npm run -- lint",
"publish": "node build/publish --provenance",
"test": "node build/tasks npm run -- test",
"verify": "act workflow_dispatch"

View File

@ -2,13 +2,13 @@
"private": true,
"version": "1.0.0",
"scripts": {
"build": "FLECKS_ENV__flecks_server__start=0 npm run build:only",
"build": "FLECKS_ENV__flecks_server__start=0 npm run -- build:only",
"build:only": "flecks build",
"debug": "DEBUG=@flecks/* npm run dev",
"debug": "DEBUG=@flecks/* npm run -- dev",
"dev": "npm run -- build:only -dh",
"postinstall": "patch-package",
"repl": "npx flecks repl --rlwrap",
"start": "DEBUG=@flecks/*,-*:silly npm run dev"
"start": "DEBUG=@flecks/*,-*:silly npm run -- dev"
},
"dependencies": {
"@flecks/server": "^4.0.0"