-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: include semantic-release script
- Loading branch information
Callin Mullaney
committed
Sep 4, 2024
1 parent
20a1fd8
commit 0338677
Showing
1 changed file
with
9 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,14 @@ | |
], | ||
"author": "Four Kitchens <[email protected]>", | ||
"license": "ISC", | ||
"lint-staged": { | ||
"config/**/*.js": [ | ||
"npm run lint-js -- --fix" | ||
], | ||
"config/**/*.{js}": [ | ||
"npm run prettier-fix" | ||
] | ||
}, | ||
"scripts": { | ||
"a11y": "npm run storybook-build && node_modules/@emulsify/core/scripts/a11y.js -r", | ||
"build": "webpack --config node_modules/@emulsify/core/config/webpack/webpack.prod.js", | ||
|
@@ -28,6 +36,7 @@ | |
"lint-styles": "stylelint --config config/emulsify-core/stylelintrc.config.json './components/**/*.scss'", | ||
"prettier": "prettier --config config/emulsify-core/prettierrc.config.json --ignore-path config/emulsify-core/.prettierignore --ignore-unknown \"./components/**/*.{js,yml,scss,md}\"", | ||
"prettier-fix": "prettier --config config/emulsify-core/prettierrc.config.json --ignore-path config/emulsify-core/.prettierignore --write --ignore-unknown \"./components/**/*.{js,yml,scss,md}\"", | ||
"semantic-release": "semantic-release", | ||
"storybook": "storybook dev -c node_modules/@emulsify/core/.storybook --ci -p 6006", | ||
"storybook-build": "npm run build && storybook build -c node_modules/@emulsify/core/.storybook -o .out", | ||
"storybook-deploy": "storybook-to-ghpages -o .out", | ||
|