@hpcc-js/wasm-zstd 1.1.1 → 1.2.1
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/dist/index.js +1 -2
- package/package.json +15 -15
- package/dist/index.js.map +0 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/wasm-zstd",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "hpcc-js - WASM zstd",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -17,21 +17,21 @@
|
|
|
17
17
|
"types/**/*"
|
|
18
18
|
],
|
|
19
19
|
"scripts": {
|
|
20
|
-
"clean": "rimraf
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"build-dev": "run-p
|
|
27
|
-
"build": "run-p
|
|
20
|
+
"clean": "rimraf coverage dist dist-test types .nyc_output",
|
|
21
|
+
"gen-types": "tsc --project tsconfig.json --emitDeclarationOnly",
|
|
22
|
+
"gen-types-watch": "npm run gen-types -- --watch",
|
|
23
|
+
"bundle": "node esbuild.js",
|
|
24
|
+
"bundle-dev": "npm run bundle -- --development",
|
|
25
|
+
"bundle-watch": "npm run bundle-dev -- --watch",
|
|
26
|
+
"build-dev": "run-p gen-types bundle-dev",
|
|
27
|
+
"build": "run-p gen-types bundle",
|
|
28
28
|
"lint-skypack": "npx -y @skypack/package-check",
|
|
29
|
-
"lint-eslint": "eslint src/**/*.ts",
|
|
29
|
+
"lint-eslint": "eslint src/**/*.ts tests/**/*.ts",
|
|
30
30
|
"lint": "run-p lint-eslint",
|
|
31
|
-
"test-
|
|
32
|
-
"test-
|
|
33
|
-
"test
|
|
34
|
-
"
|
|
31
|
+
"test-browser": "vitest run --project browser",
|
|
32
|
+
"test-node": "vitest run --project node",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"coverage": "vitest run --coverage",
|
|
35
35
|
"update": "npx -y npm-check-updates -u -t minor",
|
|
36
36
|
"update-major": "npx -y npm-check-updates -u"
|
|
37
37
|
},
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
},
|
|
52
52
|
"homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
|
|
53
53
|
"license": "Apache-2.0",
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "37db45e93a831a9ccdca8eec95434bd348c2f615"
|
|
55
55
|
}
|