Skip to content

Commit

Permalink
Merge branch 'dev' into feat-translate
Browse files Browse the repository at this point in the history
  • Loading branch information
elevatebart committed Oct 12, 2020
2 parents cd10b5e + 237f845 commit f337511
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 11 deletions.
28 changes: 20 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,30 +52,42 @@ jobs:
- attach_workspace:
at: ~/

- run: curl -L https://unpkg.com/@pnpm/self-installer | node
- run: pnpm install

# remake the pnpm link to vue-cli-plugin
- run: npm run build vuecli3 -- --ci
- run: npm run build vuecli-noplugin -- --ci
- run: npm run build vuecli3-vuetify-ie -- --ci
- run: npm run test:browser vuecli3
- run: npm run test:browser vuecli-noplugin
- run: npm run test:browser vuecli3-vuetify-ie
- run: pnpm build vuecli3 -- --ci
- run: pnpm test:browser vuecli3
- run: pnpm build vuecli-noplugin -- --ci
- run: pnpm test:browser vuecli-noplugin
- run: pnpm build vuecli3-vuetify-ie -- --ci
- run: pnpm test:browser vuecli3-vuetify-ie

examples-other:
<<: *defaults
steps:
- attach_workspace:
at: ~/

- run: curl -L https://unpkg.com/@pnpm/self-installer | node
- run: pnpm install

# Build all examples
- run: pnpm run build nuxtjs -- --ci
- run: pnpm run build docgen-nuxt -- --ci

# Check that examples really works: no JS errors on load
- run: pnpm run test:browser nuxtjs
- run: pnpm run test:browser docgen-nuxt

# Build all examples
- run: npm run build jsx -- --ci
- run: npm run build jsx-examples -- --ci
- run: npm run build nuxtjs -- --ci
- run: npm run build vuetify -- --ci

# Check that examples really works: no JS errors on load
- run: npm run test:browser jsx
- run: npm run test:browser jsx-examples
- run: npm run test:browser nuxtjs
- run: npm run test:browser vuetify

cypress:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,14 @@
"tslib": "^2.0.0",
"typescript": "^3.7.3",
"vue": "^2.6.12",
"vue-cli-plugin-styleguidist": "^4.0.0",
"vue-client-only": "^2.0.0",
"vue-i18n": "^8.21.1",
"vue-meta": "^2.4.0",
"vue-no-ssr": "^1.1.1",
"vue-router": "^3.4.5",
"vue-scrollactive": "^0.9.3",
"vue-styleguidist": "workspace:^4.32.4",
"vue-styleguidist": "^4.0.0",
"vue-template-compiler": "^2.6.12",
"vuepress": "^1.6.0",
"vuex": "^3.5.1",
Expand Down
4 changes: 3 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ esac
cd examples/$exampleName
if [ $1 = "build" ];
then
npm run styleguide:build -- $extra
if [[ $exampleName =~ vuecli3 ]]
then
pnpm styleguide:build -- $extra
else
npm run styleguide:build -- $extra
fi
else
npm run styleguide -- $extra
fi

0 comments on commit f337511

Please sign in to comment.