Skip to content

Commit ff27a11

Browse files
committed
fix #55, Main entry change with new bundle
1 parent 7dea8cd commit ff27a11

File tree

3 files changed

+35
-193
lines changed

3 files changed

+35
-193
lines changed

CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
NA
1111

12-
## [0.0.17] - 2018-12-04
12+
## [0.0.18] - 2020-03-02
13+
14+
### Fixed
15+
16+
- Main entry change with new bundle [#55](https://github.com/alexcode/vue2vis/issues/55).
17+
18+
## [0.0.17] - 2020-02-25
1319

1420
### Fixed
1521

@@ -35,9 +41,11 @@ NA
3541

3642
- Update packages in both lib and examples
3743

38-
[unreleased]: https://github.com/alexcode/vue2vis/compare/v0.0.17...HEAD
39-
[0.0.15]: https://github.com/alexcode/vue2vis/compare/v0.0.16...v0.0.17
40-
[0.0.15]: https://github.com/alexcode/vue2vis/compare/v0.0.15...v0.0.16
44+
[unreleased]: https://github.com/alexcode/vue2vis/compare/v0.0.18...HEAD
45+
[0.0.16]: https://github.com/alexcode/vue2vis/compare/v0.0.17...v0.0.18
46+
[0.0.16]: https://github.com/alexcode/vue2vis/compare/v0.0.16...v0.0.17
47+
[0.0.16]: https://github.com/alexcode/vue2vis/compare/v0.0.15...v0.0.16
48+
[0.0.15]: https://github.com/alexcode/vue2vis/compare/v0.0.14...v0.0.15
4149
[0.0.14]: https://github.com/alexcode/vue2vis/compare/v0.0.13...v0.0.14
4250
[0.0.13]: https://github.com/alexcode/vue2vis/compare/v0.0.12...v0.0.13
4351
[0.0.12]: https://github.com/alexcode/vue2vis/compare/v0.0.11...v0.0.12

package.json

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
{
22
"name": "vue2vis",
3-
"version": "0.0.17",
3+
"version": "0.0.18",
44
"description": "Vue2 component that helps with Visjs interaction",
5-
"jsnext": "dist/vue2vis.js",
6-
"main": "dist/vue2vis.min.js",
7-
"module": "dist/vue2vis.min.js",
8-
"unpkg": "dist/vue2vis.min.js",
9-
"directories": {
10-
"test": "test"
11-
},
5+
"main": "dist/vue2vis.umd.js",
6+
"module": "dist/vue2vis.commons.js",
127
"scripts": {
138
"serve": "vue-cli-service serve",
149
"build": "vue-cli-service build --target lib --name vue2vis src/main.js",
@@ -31,8 +26,8 @@
3126
"visjs"
3227
],
3328
"dependencies": {
34-
"vis": "^4.21.0",
35-
"core-js": "^3.6.4"
29+
"core-js": "^3.6.4",
30+
"vis": "^4.21.0"
3631
},
3732
"peerDependencies": {
3833
"vue": "^2.6.11"
@@ -51,6 +46,6 @@
5146
"prettier": "^1.19.1",
5247
"vue": "^2.6.11",
5348
"vue-template-compiler": "^2.6.11",
54-
"vue2vis": "^0.0.16"
49+
"vue2vis": "^0.0.17"
5550
}
5651
}

0 commit comments

Comments
 (0)