@visactor/vtable-export 1.20.0-alpha.4 → 1.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vtable-export",
|
|
3
|
-
"version": "1.20.0
|
|
3
|
+
"version": "1.20.0",
|
|
4
4
|
"description": "The export util of VTable",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "VisActor",
|
|
@@ -30,13 +30,15 @@
|
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@visactor/vtable": "1.20.0-alpha.4",
|
|
34
33
|
"@visactor/vutils": "~0.19.1",
|
|
35
34
|
"file-saver": "2.0.5",
|
|
36
35
|
"@types/file-saver": "2.0.7",
|
|
37
|
-
"exceljs": "4.4.0"
|
|
36
|
+
"exceljs": "4.4.0",
|
|
37
|
+
"@visactor/vtable": "1.20.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
+
"cross-env": "^7.0.3",
|
|
41
|
+
"increase-memory-limit": "^1.0.7",
|
|
40
42
|
"@visactor/vchart": "2.0.2",
|
|
41
43
|
"@rushstack/eslint-patch": "~1.1.4",
|
|
42
44
|
"react": "^18.0.0",
|
|
@@ -78,13 +80,14 @@
|
|
|
78
80
|
"axios": "^1.4.0",
|
|
79
81
|
"@types/react-is": "^17.0.3",
|
|
80
82
|
"rollup-plugin-node-resolve": "5.2.0",
|
|
81
|
-
"@internal/ts-config": "0.0.1",
|
|
82
83
|
"@internal/bundler": "0.0.1",
|
|
84
|
+
"@internal/ts-config": "0.0.1",
|
|
83
85
|
"@internal/eslint-config": "0.0.1"
|
|
84
86
|
},
|
|
85
87
|
"scripts": {
|
|
86
88
|
"compile": "tsc --noEmit",
|
|
87
89
|
"start": "vite ./demo",
|
|
88
|
-
"build": "bundle --clean"
|
|
90
|
+
"build": "npm run fix-memory-limit && bundle --clean",
|
|
91
|
+
"fix-memory-limit": "cross-env LIMIT=10240 increase-memory-limit"
|
|
89
92
|
}
|
|
90
93
|
}
|