Skip to content

Commit

Permalink
fix: create dist folder before storybook runs
Browse files Browse the repository at this point in the history
  • Loading branch information
Callin Mullaney committed Oct 24, 2024
1 parent 6bd43dc commit d693a15
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions whisk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"build": "webpack --config node_modules/@emulsify/core/config/webpack/webpack.prod.js",
"build-dev": "webpack --config node_modules/@emulsify/core/config/webpack/webpack.dev.js",
"coverage": "npm run test && open-cli .coverage/lcov-report/index.html",
"develop": "concurrently --raw \"npm run webpack\" \"npm run storybook\"",
"develop": "npm run build-dev && concurrently --raw \"npm run webpack\" \"npm run storybook\"",
"format": "npm run lint-fix; npm run prettier-fix",
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "lint-staged",
Expand All @@ -31,10 +31,10 @@
"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",
"style-dictionary:build": "node ./tokens/tokensTransform.js",
"style-dictionary:build": "node ./src/tokens/tokensTransform.mjs",
"test": "jest --coverage --config ./config/jest.config.js",
"tokens:build": "npm run tokens:transform && npm run style-dictionary:build",
"tokens:transform": "token-transformer ./tokens/figma.tokens.json ./tokens/transformed.tokens.json",
"tokens:transform": "token-transformer ./src/tokens/figma.tokens.json ./src/tokens/transformed.tokens.json",
"twatch": "jest --no-coverage --watch --verbose",
"webpack": "webpack --watch --config node_modules/@emulsify/core/config/webpack/webpack.dev.js"
},
Expand Down

0 comments on commit d693a15

Please sign in to comment.