@hpcc-js/wasm-graphviz 1.5.0 → 1.6.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +15 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/wasm-graphviz",
3
- "version": "1.5.0",
3
+ "version": "1.6.0",
4
4
  "description": "hpcc-js - WASM Graphviz",
5
5
  "type": "module",
6
6
  "exports": {
@@ -17,20 +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 -- --development",
25
- "build-ts-watch": "npm run build-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 spec/*.ts",
29
+ "lint-eslint": "eslint src/**/*.ts tests/**/*.ts",
30
30
  "lint": "run-p lint-eslint",
31
- "test-browser": "jasmine-browser-runner runSpecs",
32
- "test-node": "jasmine",
33
- "test": "run-s test-node test-browser",
31
+ "test-browser": "vitest run --project browser",
32
+ "test-node": "vitest run --project node",
33
+ "test": "vitest run",
34
+ "coverage": "vitest run --coverage",
34
35
  "update": "npx -y npm-check-updates -u -t minor",
35
36
  "update-major": "npx -y npm-check-updates -u"
36
37
  },
@@ -50,5 +51,5 @@
50
51
  },
51
52
  "homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
52
53
  "license": "Apache-2.0",
53
- "gitHead": "6f97b7b407abb2635e1cd68a4f4343581906d42c"
54
+ "gitHead": "4b279928d3cbcbb2cebc5c33226d15c1d6043966"
54
55
  }