karbon-components
Advanced tools
Comparing version 0.1.3 to 0.1.4
{ | ||
"name": "karbon-components", | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"private": false, | ||
@@ -28,6 +28,7 @@ "author": { | ||
"scripts": { | ||
"prepublish": "vue-cli-service build --target lib --name 'karbon-components' src/main.js", | ||
"prepublish": "vue-cli-service build --target lib --name 'karbon-components' index.js", | ||
"serve": "vue-cli-service serve", | ||
"lint": "vue-cli-service lint", | ||
"test:unit": "vue-cli-service test:unit" | ||
"test:unit": "vue-cli-service test:unit", | ||
"deploy:gh-pages": "vue-cli-service build && node deploy-gh-page.js" | ||
}, | ||
@@ -54,2 +55,3 @@ "peerDependencies": { | ||
"eslint-plugin-vue": "^5.0.0", | ||
"gh-pages": "^2.0.1", | ||
"node-sass": "^4.9.0", | ||
@@ -56,0 +58,0 @@ "sass-loader": "^7.1.0", |
@@ -0,1 +1,3 @@ | ||
import Vue from 'vue'; | ||
import App from './App.vue' | ||
import karbonFormInput from './components/form-controls/karbon-form-input.vue' | ||
@@ -7,8 +9,10 @@ import karbonFormSelect from './components/form-controls/karbon-form-select.vue' | ||
export { | ||
karbonFormInput, | ||
karbonFormSelect, | ||
karbonDateInput, | ||
karbonFlipCard, | ||
karbonCountDown, | ||
} | ||
Vue.component('karbonFormInput', karbonFormInput); | ||
Vue.component('karbonFormSelect', karbonFormSelect); | ||
Vue.component('karbonDateInput', karbonDateInput); | ||
Vue.component('karbonFlipCard', karbonFlipCard); | ||
Vue.component('karbonCountDown', karbonCountDown); | ||
new Vue({ | ||
render: h => h(App) | ||
}).$mount('#app') |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
741869
5480
15