2025-01-07 02:29:29 +08:00
|
|
|
dev:
|
|
|
|
rm -rf ./next && npm i && npm run dev
|
|
|
|
|
|
|
|
build:
|
2025-03-08 07:02:56 +08:00
|
|
|
rm -rf ./next && npm i && npm run build
|
2025-01-07 02:29:29 +08:00
|
|
|
|
|
|
|
start:
|
2025-04-12 06:40:15 +08:00
|
|
|
npm i && npm run build && npm run start
|
2025-01-07 02:29:29 +08:00
|
|
|
|
|
|
|
fast:
|
2025-02-24 00:31:10 +08:00
|
|
|
npm run dev
|
|
|
|
|
|
|
|
build-storybook:
|
|
|
|
npm run build-storybook
|
|
|
|
|
2025-03-04 00:40:02 +08:00
|
|
|
storybook:
|
2025-03-04 00:59:01 +08:00
|
|
|
npm run storybook
|
2025-02-24 00:31:10 +08:00
|
|
|
|
2025-03-08 07:02:56 +08:00
|
|
|
lint:
|
|
|
|
npm run lint
|
|
|
|
|
|
|
|
lint-fix:
|
|
|
|
npm run lint-fix
|
|
|
|
|