0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -05:00

chore: update cli script (#2059)

`dev` -> `start:dev` to avoid unnecessary runs during root `pnpm dev` script
This commit is contained in:
Gao Sun 2022-10-08 17:12:17 +08:00 committed by GitHub
parent 5f61450400
commit 0570d5eef1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@
"precommit": "lint-staged", "precommit": "lint-staged",
"build": "rimraf lib && tsc", "build": "rimraf lib && tsc",
"start": "node .", "start": "node .",
"dev": "ts-node --files src/index.ts", "start:dev": "ts-node --files src/index.ts",
"lint": "eslint --ext .ts src", "lint": "eslint --ext .ts src",
"lint:report": "pnpm lint --format json --output-file report.json", "lint:report": "pnpm lint --format json --output-file report.json",
"prepack": "pnpm build" "prepack": "pnpm build"