qvdjs 2.0.4 → 2.0.6
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/README.md +6 -6
- package/dist/index.cjs +774 -319
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +773 -318
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qvdjs",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Library for reading/writing Qlik Sense/QlikView QVD files in Javascript.",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"lint": "eslint .",
|
|
21
21
|
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest . --coverage",
|
|
22
22
|
"test:qlik": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --config jest.qlik.config.js --runInBand",
|
|
23
|
+
"test:large": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --max-old-space-size=32768\" jest --config jest.large.config.js --runInBand",
|
|
23
24
|
"clean": "rimraf -rf dist",
|
|
24
25
|
"logo:generate": "./scripts/generate-logo-assets.sh --all",
|
|
25
26
|
"logo:validate": "./scripts/generate-logo-assets.sh --all --validate",
|