chore: updating build commands for storybook

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2022-01-20 15:48:50 +01:00
committed by Patrik Oldsberg
parent 97458a0fc9
commit f419f1c1f1
2 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -46,7 +46,8 @@ jobs:
working-directory: microsite
- name: build storybook
run: yarn workspace storybook build-storybook
run: yarn build-storybook
working-directory: storybook
- name: move storybook dist into microsite
run: mv storybook/dist/ microsite/build/backstage/storybook
+2 -2
View File
@@ -29,10 +29,10 @@
"release": "node scripts/prepare-release.js && changeset version && yarn diff --yes && yarn prettier --write '{packages,plugins}/*/{package.json,CHANGELOG.md}' && yarn install",
"prettier:check": "prettier --check .",
"lerna": "lerna",
"storybook": "yarn workspace storybook start",
"storybook": "yarn --cwd storybook start",
"snyk:test": "npx snyk test --yarn-workspaces --strict-out-of-sync=false",
"snyk:test:package": "yarn snyk:test --include",
"build-storybook": "yarn workspace storybook build-storybook",
"build-storybook": "yarn --cwd storybook build-storybook",
"techdocs-cli": "node scripts/techdocs-cli.js",
"techdocs-cli:dev": "cross-env TECHDOCS_CLI_DEV_MODE=true node scripts/techdocs-cli.js",
"prepare": "husky install",