Skip to content

Commit

Permalink
build: 🔇 suppress storybook build logs in lagoon (#1235)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylankelly committed Aug 19, 2022
1 parent daead66 commit e2b061a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.storybook
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ COPY src /app/src
COPY package.json yarn.lock .eslintrc.js babel.config.js /app/
RUN yarn install
WORKDIR /app/src
RUN yarn run build-storybook
RUN yarn run build-storybook --quiet

FROM amazeeio/node:14
COPY --from=builder /app/src/public /app
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"reference:start": "yarn workspace reference start:build",
"reference:integration": "yarn workspace reference test:integration",
"test:unit": "jest --colors",
"build:storybook": "cd src && yarn build-storybook",
"build:storybook": "yarn workspace storybook build-storybook",
"build:vic-gov-au": "cd examples/vic-gov-au && yarn run build --modern=client",
"lint": "sass-lint && yarn lint:es",
"lint:es": "eslint --ext .js,.vue . --max-warnings 0",
Expand Down
2 changes: 1 addition & 1 deletion src/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@dpc-sdp/storybook",
"name": "storybook",
"description": "Storybook instance for ripple component testing",
"homepage": "https://ripple.sdp.vic.gov.au",
"version": "1.30.5",
Expand Down

0 comments on commit e2b061a

Please sign in to comment.