mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-16 09:10:33 +03:00
fix build issues
This commit is contained in:
@@ -33,6 +33,4 @@ webpack(webpackConfig, function (err, stats) {
|
||||
chunks: false,
|
||||
chunkModules: false
|
||||
}) + '\n')
|
||||
|
||||
ghpages.publish(path.join(__dirname, '../dist'))
|
||||
})
|
||||
|
||||
@@ -17,8 +17,9 @@ module.exports = {
|
||||
fallback: [path.join(__dirname, '../node_modules')],
|
||||
alias: {
|
||||
'src': path.resolve(__dirname, '../src'),
|
||||
'assets': path.resolve(__dirname, '../src/assets'),
|
||||
'components': path.resolve(__dirname, '../src/components')
|
||||
'assets': path.resolve(__dirname, '../docs/assets'),
|
||||
'mixins': path.resolve(__dirname, '../src/mixins'),
|
||||
'components': path.resolve(__dirname, '../docs/components')
|
||||
}
|
||||
},
|
||||
resolveLoader: {
|
||||
|
||||
+2
-2
@@ -6,8 +6,8 @@ module.exports = {
|
||||
env: require('./prod.env'),
|
||||
index: path.resolve(__dirname, '../dist/index.html'),
|
||||
assetsRoot: path.resolve(__dirname, '../dist'),
|
||||
assetsSubDirectory: 'static',
|
||||
assetsPublicPath: '/vue-select/',
|
||||
assetsSubDirectory: '',
|
||||
assetsPublicPath: '/',
|
||||
productionSourceMap: true
|
||||
},
|
||||
dev: {
|
||||
|
||||
Binary file not shown.
@@ -1,9 +1,9 @@
|
||||
@font-face {
|
||||
font-family: 'octicons';
|
||||
src: url('./assets/fonts/octicons.eot?#iefix') format('embedded-opentype'),
|
||||
url('./assets/fonts/octicons.woff') format('woff'),
|
||||
url('./assets/fonts/octicons.ttf') format('truetype'),
|
||||
url('./assets/fonts/octicons.svg#octicons') format('svg');
|
||||
src: url('~assets/fonts/octicons.eot?#iefix') format('embedded-opentype'),
|
||||
url('~assets/fonts/octicons.woff') format('woff'),
|
||||
url('~assets/fonts/octicons.ttf') format('truetype'),
|
||||
url('~assets/fonts/octicons.svg#octicons') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@@ -143,7 +143,7 @@
|
||||
*/
|
||||
import countries from '../data/advanced'
|
||||
import simple from '../data/simple'
|
||||
import vSelect from '../../src/components/Select.vue'
|
||||
import vSelect from 'src/components/Select.vue'
|
||||
import vCode from './Code.vue'
|
||||
import InstallSnippet from './snippets/InstallSnippet.vue'
|
||||
export default {
|
||||
|
||||
+5
-6
@@ -11,15 +11,15 @@
|
||||
<meta name="title" content="Vue Select | VueJS Select2/Chosen Component">
|
||||
<meta name="description" content="A well-tested, native Vue.js component that provides similar functionality to Select2/Chosen without the overhead of jQuery.">
|
||||
|
||||
<link rel="icon" href="static/static/vue-logo.png" type="image/png">
|
||||
<link rel="icon" href="static/vue-logo.png" type="image/png">
|
||||
|
||||
<meta name="description" content="A well-tested, native Vue.js component that provides similar functionality to Select2/Chosen without the overhead of jQuery.">
|
||||
<meta name="description" content="A native Vue.js component that provides similar functionality to Select2/Chosen without the overhead of jQuery.">
|
||||
<meta property="og:title" content="Vue Select | VueJS Select2/Chosen Component">
|
||||
<meta property="og:site_name" content="Vue Select | VueJS Select2/Chosen Component">
|
||||
<meta property="og:url" content="http://sagalbot.github.io/vue-select">
|
||||
<meta property="og:url" content="http://sagalbot.github.io/vue-select/">
|
||||
<meta property="og:description" content="A well-tested, native Vue.js component that provides similar functionality to Select2/Chosen without the overhead of jQuery.">
|
||||
<meta property="og:image" content="http://sagalbot.github.io/vue-select/static/vue-logo.png">
|
||||
<meta property="twitter:image" content="http://sagalbot.github.io/vue-select/static/vue-logo.png">
|
||||
<meta property="og:image" content="static/vue-logo.png">
|
||||
<meta property="twitter:image" content="static/vue-logo.png">
|
||||
<meta property="twitter:title" content="Vue Select | VueJS Select2/Chosen Component">
|
||||
<meta property="twitter:description" content="A well-tested, native Vue.js component that provides similar functionality to Select2/Chosen without the overhead of jQuery.">
|
||||
</head>
|
||||
@@ -32,7 +32,6 @@
|
||||
|
||||
<p class="accolades lead">
|
||||
<a href="https://travis-ci.org/sagalbot/vue-select"><img src="https://img.shields.io/travis/sagalbot/vue-select.svg?style=flat-square" alt="Build Status"></a>
|
||||
<a href="https://codeclimate.com/github/sagalbot/vue-select"><img src="https://img.shields.io/codeclimate/github/sagalbot/vue-select.svg?style=flat-square" alt="Code Climate Rating"></a>
|
||||
<a href="https://codeclimate.com/github/sagalbot/vue-select"><img src="https://img.shields.io/codeclimate/coverage/github/sagalbot/vue-select.svg?style=flat-square" alt="Code Coverage"></a>
|
||||
<a href="https://gemnasium.com/github.com/sagalbot/vue-select"><img src="https://img.shields.io/gemnasium/sagalbot/vue-select.svg?style=flat-square" alt="No Dependencies"></a>
|
||||
<img src="https://img.shields.io/github/license/sagalbot/vue-select.svg?style=flat-square" alt="MIT License">
|
||||
|
||||
Reference in New Issue
Block a user