Vue Evolve is a design system built with Storybook and Vue.
If vue isn’t installed, run
npm install -g @vue/cli
Then
npm install
npm run storybook
npm run build-storybook
First build storybook:
npm run build-storybook
Then push to the master branch.
Finally, push the updates to the gh-pages branch:
git subtree push --prefix storybook-static origin gh-pages
In a few minutes, Github Pages should refresh with your newest repository changes. Visit https://kimlarocca.github.io/vue-evolve to view Storybook!
npm run test
npm run lint
Create a global symlink for this package:
npm link (or sudo npm link)
Tell your application to use the global symlink:
npm link vue-evolve
Refresh your application after changes:
npm update
Unlink it:
npm unlink
Add this to your nuxt.config.js file to import components for use with SSR:
build: {
transpile: ['vue-evolve']
}