buster/web/Makefile

25 lines
278 B
Makefile
Raw Normal View History

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
start:
npm run build && npm run start
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