@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/wasm-zstd",
3
- "version": "1.1.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 ./dist ./dist-test ./types",
21
- "build-types": "tsc --project tsconfig.json --emitDeclarationOnly",
22
- "build-types-watch": "npm run build-types -- --watch",
23
- "build-ts": "node esbuild.mjs",
24
- "build-ts-dev": "npm run build-ts -- --mode=development",
25
- "build-ts-watch": "npm run compile-ts-dev -- --watch",
26
- "build-dev": "run-p build-types build-ts-dev",
27
- "build": "run-p build-types build-ts",
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-chrome": "karma start --single-run --browsers ChromiumHeadless karma.conf.cjs",
32
- "test-firefox": "karma start --single-run --browsers Firefox karma.conf.cjs",
33
- "test-node": "mocha ./dist-test/index.node.js --reporter spec",
34
- "test": "run-s test-chrome test-node",
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": "7c8edd51ff7229d9ccb3264bba3485b89f3d2f0d"
54
+ "gitHead": "37db45e93a831a9ccdca8eec95434bd348c2f615"
55
55
  }