Fix missing tokens

This commit is contained in:
JB 2018-11-29 23:11:24 +01:00
parent c98ffb712c
commit 6d5f30937c
2 changed files with 3 additions and 1 deletions

View File

@ -20,7 +20,8 @@ RUN yarn install --production=false --frozen-lockfile --non-interactive
# Install and build Styleguide
COPY styleguide/ ./styleguide
RUN cd styleguide && yarn install --production=false --frozen-lockfile --non-interactive \
&& cd ..
&& cd .. \
&& yarn run styleguide:build
COPY . .
RUN ["yarn", "run", "build"]

View File

@ -11,6 +11,7 @@
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue .",
"styleguide": "cd ./styleguide && yarn dev",
"styleguide:build": "cd ./styleguide && yarn build:lib && cd ../",
"test": "jest",
"precommit": "yarn lint"
},