Skip to content

Commit

Permalink
#283fixing style extract bug
Browse files Browse the repository at this point in the history
  • Loading branch information
xaksis committed May 17, 2018
1 parent 1f1eee8 commit 6ea5f89
Show file tree
Hide file tree
Showing 12 changed files with 2,488 additions and 3,553 deletions.
22 changes: 11 additions & 11 deletions bili.config.js
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
const { version } = require('./package')
const { version } = require('./package');

const banner = `/**
* vue-good-table v${version}
* (c) 2018-present xaksis <shay@crayonbits.com>
* https://github.com/xaksis/vue-good-table
* Released under the MIT License.
*/
`
`;

module.exports = {
name: 'vue-good-table',
banner,
format: [
"cjs",
"es",
"umd",
"umd-min"
'cjs',
'es',
'umd',
'umd-min',
],
compress: 'umd',
plugins: ['vue'],
vue: {
css: 'dist/vue-good-table.css',
cssSourceMap: false
cssSourceMap: false,
},
buble: {
transforms: {
generator: true,
dangerousForOf: true
}
}
}
dangerousForOf: true,
},
},
};
4 changes: 2 additions & 2 deletions dev/main.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// eslint-disable-next-line import/no-extraneous-dependencies
import Vue from 'vue';
import App from './App';
// import VueGoodTable from '../dist/vue-good-table.es';
import VueGoodTable from '../dist/vue-good-table.es';
// import '../dist/vue-good-table.css';
import VueGoodTable from '../src';
// import VueGoodTable from '../src';

Vue.use(VueGoodTable);

Expand Down
Loading

0 comments on commit 6ea5f89

Please sign in to comment.