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 1c64efd commit 02bc7b2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,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 @@ -40,15 +40,15 @@
"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"
},
"dependencies": {
"@emulsify/core": "^2.0.0"
"@emulsify/core": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
Expand Down

0 comments on commit 02bc7b2

Please sign in to comment.