File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 1
1
module . exports = {
2
2
comments : false ,
3
+ presets : [
4
+ [
5
+ "@babel/env" ,
6
+ {
7
+ targets : {
8
+ edge : "17" ,
9
+ firefox : "60" ,
10
+ chrome : "67" ,
11
+ safari : "11.1"
12
+ } ,
13
+ useBuiltIns : "usage" ,
14
+ corejs : "3.6.5"
15
+ }
16
+ ]
17
+ ] ,
3
18
plugins : [ "transform-vue-jsx" ] ,
4
19
env : {
5
20
test : {
6
- presets : [ [ "env" , { targets : { node : "current" } } ] ]
7
- /* plugins: ["istanbul"] */
21
+ // presets: [["env", { targets: { node: "current" } }]],
22
+ plugins : [ "istanbul" ]
8
23
}
9
24
}
10
25
} ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue-easytable" ,
3
- "version" : " 2.5.2 " ,
3
+ "version" : " 2.5.3 " ,
4
4
"main" : " libs/main.js" ,
5
5
"description" : " Vue table component" ,
6
6
"keywords" : [
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import VeSelect from './ve-select';
13
13
import VeTable from './ve-table' ;
14
14
15
15
16
- const version = '2.5.2 ' ;
16
+ const version = '2.5.3 ' ;
17
17
const components = [
18
18
VeCheckbox ,
19
19
VeCheckboxGroup ,
You can’t perform that action at this time.
0 commit comments