Skip to content

Commit

Permalink
inline node modules for esm
Browse files Browse the repository at this point in the history
  • Loading branch information
xaksis committed Jul 17, 2019
1 parent 60391b9 commit cb5b2c6
Show file tree
Hide file tree
Showing 6 changed files with 22,171 additions and 2,272 deletions.
1 change: 1 addition & 0 deletions bili.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@ module.exports = {
css: false,
},
},
bundleNodeModules: true,
};
6 changes: 3 additions & 3 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.vue';
// import VueGoodTable from '../dist/vue-good-table.esm';
// import '../dist/vue-good-table.css';
import VueGoodTable from '../src';
import VueGoodTable from '../dist/vue-good-table.esm';
import '../dist/vue-good-table.css';
// import VueGoodTable from '../src';

Vue.use(VueGoodTable);

Expand Down
Loading

0 comments on commit cb5b2c6

Please sign in to comment.