File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to `permafrost-dev/vue-ray` will be documented in this file.
4
4
5
5
---
6
6
7
+ ## 1.4.1 - 2021-02-09
8
+
9
+ - fix ` /vue2 ` export
10
+
11
+ - fix ` /vue3 ` export
12
+
7
13
## 1.4.0 - 2021-02-09
8
14
9
15
- change vue2/vue3 to use module.exports
Original file line number Diff line number Diff line change
1
+ /* eslint-disable no-unused-vars */
2
+ /* eslint-disable no-undef */
1
3
2
- const { RayPlugin } = require ( './dist/vue2.cjs' ) ;
4
+ const RayPlugin = require ( './dist/vue2.cjs' ) ;
3
5
4
- module . exports . RayPlugin = RayPlugin ;
6
+ module . exports = { RayPlugin } ;
5
7
Original file line number Diff line number Diff line change 1
1
/* eslint-disable no-unused-vars */
2
2
/* eslint-disable no-undef */
3
3
4
- const { RayPlugin } = require ( './dist/vue3.cjs' ) ;
4
+ const RayPlugin = require ( './dist/vue3.cjs' ) ;
5
5
6
- module . exports . RayPlugin = RayPlugin ;
6
+ module . exports = { RayPlugin } ;
You can’t perform that action at this time.
0 commit comments