Skip to content

Commit

Permalink
1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinongko committed Sep 25, 2017
1 parent f2b4d69 commit 3c8f6dd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/vue-chart-js.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-chart-js",
"version": "1.4.0",
"version": "1.4.1",
"description": "Chart.js for VueJs.",
"author": "Kevin Ongko",
"main": "dist/vue-chart-js.min.js",
Expand Down
7 changes: 6 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ module.exports = {
},
entry: './src/index.js',
externals: {
'chart.js': 'Chart'
'chart.js': {
commonjs: 'chart.js',
commonjs2: 'chart.js',
amd: 'chart.js',
root: 'Chart'
}
},
output: {
path: path.resolve(__dirname, 'dist'),
Expand Down

0 comments on commit 3c8f6dd

Please sign in to comment.