JD Common Components
Adding to Project
npm install @steriley/jd-components
Importing Components
Use the following import pattern to load in the required component
import Component from '@steriley/jd-components/sfc/Component.vue';
Using with Jest
Add the following to the Jest config to allow for the components to be loaded and transformed in tests
"transformIgnorePatterns": [
"/node_modules/(?!@steriley/jd-components)"
],