-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
38 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,9 +8,6 @@ | |
"type": "module", | ||
"storyboxVersion": "2.0.0", | ||
"main": ".bin/init.js", | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"bin": { | ||
"antistatique-frontend": ".bin/init.js", | ||
"init": ".bin/init.js" | ||
|
@@ -21,18 +18,18 @@ | |
"scripts": { | ||
"clean": "rm -rf node_modules/.cache", | ||
"icons:build": "svg-sprite -s --symbol-inline --symbol-dest public/icons --symbol-sprite icons.svg src/assets/icons/*.svg", | ||
"images:build": "npx zx bin/generate-image.mjs", | ||
"tailwind:build": "export NODE_ENV=production && npx tailwindcss -i ./src/styles/base.css -o ./public/css/styles.css --minify", | ||
"tailwind:start": "npx tailwindcss -i ./src/styles/base.css -o ./public/css/styles.css --watch", | ||
"images:build": "bun x zx bin/generate-image.mjs", | ||
"tailwind:build": "export NODE_ENV=production && bun x tailwindcss -i ./src/styles/base.css -o ./public/css/styles.css --minify", | ||
"tailwind:start": "bun x tailwindcss -i ./src/styles/base.css -o ./public/css/styles.css --watch", | ||
"storybook:start": "npm run clean && storybook dev --no-open -p 6006", | ||
"storybook:build": "storybook build", | ||
"modules:start": "rollup --config --watch", | ||
"modules:build": "rollup --config", | ||
"start": "concurrently \"npm run tailwind:start\" \"npm run storybook:start\"", | ||
"build": "npm run build:assets", | ||
"build:assets": "npm run icons:build && npm run tailwind:build && npm run modules:build && npx @ffflorian/[email protected] -c .jsziprc.json", | ||
"build:assets": "npm run icons:build && npm run tailwind:build && npm run modules:build && bun x @ffflorian/[email protected] -c .jsziprc.json", | ||
"build:styleguide": "npm run build:assets && npm run storybook:build", | ||
"generate": "npx generact", | ||
"generate": "bun x generact", | ||
"lint:js": "eslint --ext js,jsx,ts,tsx ./ --max-warnings=0", | ||
"lint:css": "stylelint 'playground/**/*.css'", | ||
"fix:js": "eslint --ext js,jsx,ts,tsx ./ --max-warnings=0 --fix", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters