-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: remove drush commands and adjust whisk dependencies
- Loading branch information
Callin Mullaney
committed
Feb 15, 2024
1 parent
3aaa4ba
commit aac990a
Showing
11 changed files
with
52 additions
and
1,034 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
20 |
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"name": "whisk", | ||
"version": "1.0.0", | ||
"description": "Storybook development + Webpack Build", | ||
"keywords": [ | ||
"component library", | ||
"design system", | ||
"drupal", | ||
"pattern library", | ||
"storybook", | ||
"styleguide" | ||
], | ||
"author": "Four Kitchens <shout@fourkitchens.com>", | ||
"license": "ISC", | ||
"scripts": { | ||
"a11y": "npm run storybook-build && ./scripts/a11y.js -r", | ||
"build": "webpack --config ./config/webpack/webpack.prod.js", | ||
"coverage": "npm run test && open-cli .coverage/lcov-report/index.html", | ||
"develop": "concurrently --raw \"npm run webpack\" \"npm run storybook\"", | ||
"format": "npm run lint-fix; npm run prettier-fix", | ||
"lint": "npm run lint-js; npm run lint-styles", | ||
"lint-fix": "npm run lint-js -- --fix; npm run lint-styles -- --fix", | ||
"lint-js": "eslint --no-error-on-unmatched-pattern ./components", | ||
"lint-staged": "lint-staged", | ||
"lint-styles": "stylelint './components/**/*.scss'", | ||
"prettier": "prettier --ignore-unknown \"../../components/**/*.{js,yml,scss,md}\"", | ||
"prettier-fix": "prettier --write --ignore-unknown \"../../components**/*.{js,yml,scss,md}\"", | ||
"storybook": "storybook dev -c node_modules/emulsify-core/.storybook --ci -s ./dist,./assets/images,./assets/icons -p 6006", | ||
"storybook-build": "storybook build -s ./dist,./assets/images,./assets/icons -o .out", | ||
"storybook-deploy": "storybook-to-ghpages -o .out", | ||
"test": "jest --coverage --config ./config/jest.config.js", | ||
"twatch": "jest --no-coverage --watch --verbose" | ||
}, | ||
"dependencies": { | ||
"emulsify-core": "github:emulsify-ds/emulsify-core" | ||
} | ||
} |
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
Oops, something went wrong.