If vue isn’t installed, run
npm install -g @vue/cli
Then
npm install
npm run serve
npm run build
npm run storybook
npm run build-storybook
See Storybook at https://storybook.nypr.digital
Pushing to main will trigger a Storybook deployment on CircleCi
npm run test
npm run lint
See the Vue CLI Configuration Reference for more!
Create a global symlink for this package:
npm link (or sudo npm link)
Tell your application to use the global symlink:
npm link nypr-design-system-vue
Refresh your application after changes:
npm link nypr-design-system-vue and/or npm update
Unlink it:
npm unlink
Add this to your nuxt.config.js file to import components for use with SSR:
build: {
transpile: ['nypr-design-system-vue']
}