@hpcc-js/wasm 1.12.2 → 1.12.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/CHANGELOG.md +13 -0
- package/README.md +2 -2
- package/bin/cli.js +40 -0
- package/dist/expat.es6.js +19 -3
- package/dist/expat.es6.js.map +1 -1
- package/dist/expat.js +22 -6
- package/dist/expat.js.map +1 -1
- package/dist/expat.node.es6.js +19 -3
- package/dist/expat.node.es6.js.map +1 -1
- package/dist/expat.node.js +19 -3
- package/dist/expat.node.js.map +1 -1
- package/dist/expatlib.wasm +0 -0
- package/dist/graphviz.es6.js +19 -3
- package/dist/graphviz.es6.js.map +1 -1
- package/dist/graphviz.js +22 -6
- package/dist/graphviz.js.map +1 -1
- package/dist/graphviz.node.es6.js +19 -3
- package/dist/graphviz.node.es6.js.map +1 -1
- package/dist/graphviz.node.js +19 -3
- package/dist/graphviz.node.js.map +1 -1
- package/dist/graphvizlib.wasm +0 -0
- package/dist/index.es6.js +23 -6
- package/dist/index.es6.js.map +1 -1
- package/dist/index.js +26 -9
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/index.node.es6.js +23 -6
- package/dist/index.node.es6.js.map +1 -1
- package/dist/index.node.js +23 -6
- package/dist/index.node.js.map +1 -1
- package/package.json +16 -16
- package/bin/index.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/wasm",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.6",
|
|
4
4
|
"description": "hpcc-js - WASM Libraries",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphviz",
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
"unpkg": "dist/index.min.js",
|
|
23
23
|
"jsdelivr": "dist/index.min.js",
|
|
24
24
|
"bin": {
|
|
25
|
-
"dot-wasm": "bin/
|
|
25
|
+
"dot-wasm": "bin/cli.js"
|
|
26
26
|
},
|
|
27
27
|
"types": "types/index.d.ts",
|
|
28
28
|
"files": [
|
|
29
|
-
"bin/
|
|
29
|
+
"bin/cli.js",
|
|
30
30
|
"dist/index*.*",
|
|
31
31
|
"dist/expat*.*",
|
|
32
32
|
"dist/graphviz*.*",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"install-expat:linux": "./scripts/cpp-install-expat.sh",
|
|
45
45
|
"install-expat:win32": "wsl -e ./scripts/cpp-install-expat.sh",
|
|
46
46
|
"install-build-deps": "run-s install-emsdk install-graphviz install-expat",
|
|
47
|
-
"clean": "rimraf coverage
|
|
47
|
+
"clean": "rimraf coverage build dist lib* types *.tsbuildinfo",
|
|
48
48
|
"clean-build-deps": "rimraf ./emsdk ./src-graphviz ./src-expat",
|
|
49
49
|
"compile-es6": "tsc --module es6 --outDir ./lib-es6",
|
|
50
50
|
"compile-es6-watch": "npm run compile-es6 -- -w",
|
|
@@ -53,10 +53,9 @@
|
|
|
53
53
|
"compile-cpp:linux": "./scripts/cpp-build.sh",
|
|
54
54
|
"compile-cpp:win32": "wsl -e ./scripts/cpp-build.sh",
|
|
55
55
|
"bundle": "rollup -c",
|
|
56
|
-
"bundle-cli": "ncc build -e ../dist/graphviz.node.js -m ./src/cli.js -o ./bin",
|
|
57
56
|
"bundle-watch": "npm run bundle -- -w",
|
|
58
57
|
"minimize": "terser dist/index.js -c -m --source-map -o dist/index.min.js",
|
|
59
|
-
"build": "run-s compile-cpp compile-es6 bundle
|
|
58
|
+
"build": "run-s compile-cpp compile-es6 bundle minimize",
|
|
60
59
|
"build-ubuntu-dev": "docker build --rm -f \"./docker/ubuntu-dev.dockerfile\" -t ubuntu-dev:latest \".\"",
|
|
61
60
|
"standard-version": "standard-version",
|
|
62
61
|
"standard-version-dryrun": "standard-version --dry-run",
|
|
@@ -71,16 +70,18 @@
|
|
|
71
70
|
"tag": "run-s standard-version git-push",
|
|
72
71
|
"purge-jsdelivr": "node ./utils/purge-jsdelivr.js"
|
|
73
72
|
},
|
|
73
|
+
"dependencies": {
|
|
74
|
+
"yargs": "^17.2.1"
|
|
75
|
+
},
|
|
74
76
|
"devDependencies": {
|
|
75
77
|
"@rollup/plugin-alias": "^3.1.5",
|
|
76
78
|
"@rollup/plugin-commonjs": "^19.0.0",
|
|
77
|
-
"@rollup/plugin-node-resolve": "^13.0.
|
|
79
|
+
"@rollup/plugin-node-resolve": "^13.0.5",
|
|
78
80
|
"@rollup/plugin-replace": "^2.4.2",
|
|
79
|
-
"@types/chai": "^4.2.
|
|
81
|
+
"@types/chai": "^4.2.22",
|
|
80
82
|
"@types/mocha": "^9.0.0",
|
|
81
|
-
"@typescript-eslint/eslint-plugin": "^4.
|
|
82
|
-
"@typescript-eslint/parser": "^4.
|
|
83
|
-
"@vercel/ncc": "^0.31.1",
|
|
83
|
+
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
84
|
+
"@typescript-eslint/parser": "^4.33.0",
|
|
84
85
|
"chai": "^4.3.4",
|
|
85
86
|
"eslint": "^7.32.0",
|
|
86
87
|
"karma": "^6.3.4",
|
|
@@ -89,17 +90,16 @@
|
|
|
89
90
|
"karma-mocha": "^2.0.1",
|
|
90
91
|
"karma-spec-reporter": "^0.0.32",
|
|
91
92
|
"local-web-server": "^5.1.1",
|
|
92
|
-
"mocha": "^9.1.
|
|
93
|
+
"mocha": "^9.1.3",
|
|
93
94
|
"npm-run-all": "^4.1.5",
|
|
94
95
|
"rimraf": "^3.0.2",
|
|
95
|
-
"rollup": "^2.
|
|
96
|
+
"rollup": "^2.58.0",
|
|
96
97
|
"rollup-plugin-sourcemaps": "^0.6.3",
|
|
97
98
|
"run-script-os": "^1.1.6",
|
|
98
99
|
"standard-version": "^9.3.1",
|
|
99
|
-
"terser": "^5.
|
|
100
|
+
"terser": "^5.9.0",
|
|
100
101
|
"tslib": "^2.3.1",
|
|
101
|
-
"typescript": "^4.4.
|
|
102
|
-
"yargs": "^17.1.1"
|
|
102
|
+
"typescript": "^4.4.4"
|
|
103
103
|
},
|
|
104
104
|
"repository": {
|
|
105
105
|
"type": "git",
|
package/bin/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|