@hpcc-js/wasm 2.8.0 → 2.9.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/wasm",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "description": "hpcc-js - WASM Libraries",
5
5
  "keywords": [
6
6
  "graphviz",
@@ -104,7 +104,7 @@
104
104
  "test-bundle": "npx -y esbuild --format=esm --bundle ./dist/base91.js --outdir=tmp",
105
105
  "test-bundle-umd": "npx -y esbuild --platform=node --bundle ./dist/base91.umd.js --outdir=tmp",
106
106
  "test-bundle-node": "npx -y esbuild --platform=node --bundle ./dist/base91.js --outdir=tmp",
107
- "test-chrome": "karma start --single-run --browsers ChromeHeadless karma.conf.cjs",
107
+ "test-chrome": "karma start --single-run --browsers ChromiumHeadless karma.conf.cjs",
108
108
  "test-firefox": "karma start --single-run --browsers Firefox karma.conf.cjs",
109
109
  "test-node": "node ./bin/dot-wasm.js -v && mocha ./dist-test/index.node.cjs --reporter spec && mocha ./dist-test/index.node.js --reporter spec",
110
110
  "test": "run-s test-bundle test-bundle-node test-bundle-umd test-chrome test-node",
@@ -116,24 +116,24 @@
116
116
  "update": "npx npm-check-updates -u -t minor"
117
117
  },
118
118
  "dependencies": {
119
- "yargs": "17.6.2"
119
+ "yargs": "17.7.1"
120
120
  },
121
121
  "devDependencies": {
122
122
  "@istanbuljs/nyc-config-typescript": "1.0.2",
123
- "@rollup/plugin-commonjs": "23.0.7",
123
+ "@rollup/plugin-commonjs": "24.0.1",
124
124
  "@rollup/plugin-node-resolve": "15.0.1",
125
- "@rollup/plugin-terser": "0.1.0",
125
+ "@rollup/plugin-terser": "0.4.0",
126
126
  "@types/chai": "4.3.4",
127
127
  "@types/emscripten": "1.39.6",
128
128
  "@types/mocha": "10.0.1",
129
- "@types/node": "16.18.10",
130
- "@types/yargs": "17.0.17",
131
- "@typescript-eslint/eslint-plugin": "5.47.0",
132
- "@typescript-eslint/parser": "5.47.0",
133
- "assemblyscript": "0.25.2",
129
+ "@types/node": "18.15.11",
130
+ "@types/yargs": "17.0.24",
131
+ "@typescript-eslint/eslint-plugin": "5.57.0",
132
+ "@typescript-eslint/parser": "5.57.0",
133
+ "assemblyscript": "0.27.1",
134
134
  "chai": "4.3.7",
135
135
  "coveralls": "3.1.1",
136
- "eslint": "8.30.0",
136
+ "eslint": "8.37.0",
137
137
  "fzstd": "0.1.0",
138
138
  "karma": "6.4.1",
139
139
  "karma-chai": "0.1.0",
@@ -141,20 +141,20 @@
141
141
  "karma-firefox-launcher": "2.1.2",
142
142
  "karma-mocha": "2.0.1",
143
143
  "karma-spec-reporter": "0.0.36",
144
- "local-web-server": "5.2.1",
144
+ "local-web-server": "5.3.0",
145
145
  "mocha": "10.2.0",
146
146
  "npm-run-all": "4.1.5",
147
147
  "nyc": "15.1.0",
148
- "rimraf": "3.0.2",
149
- "rollup": "3.8.1",
148
+ "rimraf": "4.4.1",
149
+ "rollup": "3.20.2",
150
150
  "rollup-plugin-sourcemaps": "0.6.3",
151
151
  "run-script-os": "1.1.6",
152
152
  "standard-version": "9.5.0",
153
- "tslib": "2.4.1",
154
- "typedoc": "0.23.23",
153
+ "tslib": "2.5.0",
154
+ "typedoc": "0.23.28",
155
155
  "typedoc-plugin-markdown": "3.14.0",
156
- "typescript": "4.9.4",
157
- "vitepress": "1.0.0-alpha.31"
156
+ "typescript": "5.0.2",
157
+ "vitepress": "1.0.0-alpha.63"
158
158
  },
159
159
  "repository": {
160
160
  "type": "git",
@@ -96,7 +96,7 @@ export declare class Graphviz {
96
96
  *
97
97
  * @param dotSource Required - graph definition in [DOT](https://graphviz.gitlab.io/doc/info/lang.html) language
98
98
  * @param l The minimum length of leaf edges is staggered between 1 and len (a small integer).
99
- * @param f Enables the staggering of the -l option to fanout nodes whose indegree and outdegree are both 1. This helps with structures such as a -> {w x y \} -> b. This option only works if the -l flag is set.
99
+ * @param f Enables the staggering of the -l option to fanout nodes whose indegree and outdegree are both 1. This helps with structures such as a -> \{w x y \} -> b. This option only works if the -l flag is set.
100
100
  * @param c Form disconnected nodes into chains of up to len nodes.
101
101
  * @returns A string containing the "unflattened" dotSource.
102
102
  */