chore: fix typo

This commit is contained in:
Alexis
2021-09-30 06:44:09 +09:30
parent 0d4cd20ba3
commit 2bbfc6de62

View File

@@ -13,7 +13,7 @@
"build-binary-step-1": "nexe ./dist/cli.js --output ./bin/unraid-api --make=\"-j$(nproc 2> /dev/null || echo 1)\" -r './dist/**/*' -r './node_modules/**/*' && echo '✔ Binary built: ./bin/unraid-api'",
"build-binary-step-2": "nexe ./dist/supervisor.js --output ./bin/unraid-supervisor --make=\"-j$(nproc 2> /dev/null || echo 1)\" -r './dist/**/*' -r './node_modules/**/*' && echo '✔ Binary built: ./bin/unraid-supervisor'",
"build-binary-step-3": "rm -rf ./node_modules && rm -rf ./dist && echo '✔ Source files deleted'",
"build-binary": "npm run build-binary-step-1 && npm run build-binary-step-2 && build-binary-step-3",
"build-binary": "npm run build-binary-step-1 && npm run build-binary-step-2 && npm run build-binary-step-3",
"copy-schemas": "cpx app/**/*.graphql dist/types",
"clean": "modclean --no-progress --run --path .",
"commit": "npx git-cz",