Skip to content

Commit 9753815

Browse files
committed
v2.5.3
1、Fix compilation failure via webpack
1 parent 3c783c3 commit 9753815

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

babel.config.js

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11
module.exports = {
22
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+
],
318
plugins: ["transform-vue-jsx"],
419
env: {
520
test: {
6-
presets: [["env", { targets: { node: "current" } }]]
7-
/* plugins: ["istanbul"] */
21+
//presets: [["env", { targets: { node: "current" } }]],
22+
plugins: ["istanbul"]
823
}
924
}
1025
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-easytable",
3-
"version": "2.5.2",
3+
"version": "2.5.3",
44
"main": "libs/main.js",
55
"description": "Vue table component",
66
"keywords": [

packages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import VeSelect from './ve-select';
1313
import VeTable from './ve-table';
1414

1515

16-
const version = '2.5.2';
16+
const version = '2.5.3';
1717
const components = [
1818
VeCheckbox,
1919
VeCheckboxGroup,

0 commit comments

Comments
 (0)