Skip to content

Commit

Permalink
Merge pull request apertureless#1 from apertureless/develop
Browse files Browse the repository at this point in the history
Bring up to date with origin
  • Loading branch information
Dan authored Aug 7, 2017
2 parents 85fafd9 + 4bf4f57 commit f95ea49
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ You can use `vue-chartjs` directly in the browser without any build setup. Like

If you're using Gulp, Browserify or Webpack 1 the entry is `vue-chartjs.js` which is __transpiled__ and __bundled__ UMD Module.

However Vue.js and Chart.js are `deerDependencies` so you have to install them seperately. In most projects you will have `Vue.js` already installed anyways. This way, you can have different versions of Vue.js and Chart.js then in this package.
However Vue.js and Chart.js are `peerDependencies` so you have to install them separately. In most projects you will have `Vue.js` already installed anyways. This way, you can have different versions of Vue.js and Chart.js then in this package.

### Webpack 2
If you're using Webpack 2 it will automatically use the `jsnext:main` / `module` entry point. Which is `es/index.js`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-chartjs",
"version": "2.8.0",
"version": "2.8.1",
"description": "vue.js wrapper for chart.js",
"author": "Jakub Juszczak <[email protected]>",
"homepage": "http://vue-chartjs.org",
Expand Down
2 changes: 1 addition & 1 deletion src/BaseCharts/Bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default Vue.extend({
default () {
return {
width: '100%',
height: '200%',
height: '100%',
position: 'relative'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/BaseCharts/Bubble.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default Vue.extend({
default () {
return {
width: '100%',
height: '200%',
height: '100%',
position: 'relative'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/BaseCharts/Doughnut.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default Vue.extend({
default () {
return {
width: '100%',
height: '200%',
height: '100%',
position: 'relative'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/BaseCharts/HorizontalBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default Vue.extend({
default () {
return {
width: '100%',
height: '200%',
height: '100%',
position: 'relative'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/BaseCharts/Line.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default Vue.extend({
default () {
return {
width: '100%',
height: '200%',
height: '100%',
position: 'relative'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/BaseCharts/Pie.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default Vue.extend({
default () {
return {
width: '100%',
height: '200%',
height: '100%',
position: 'relative'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/BaseCharts/PolarArea.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default Vue.extend({
default () {
return {
width: '100%',
height: '200%',
height: '100%',
position: 'relative'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/BaseCharts/Radar.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default Vue.extend({
default () {
return {
width: '100%',
height: '200%',
height: '100%',
position: 'relative'
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/BaseCharts/Scatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default Vue.extend({
default () {
return {
width: '100%',
height: '200%',
height: '100%',
position: 'relative'
}
}
Expand Down

0 comments on commit f95ea49

Please sign in to comment.