@hpcc-js/wasm-graphviz-cli 1.2.3 → 1.2.5

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 (1) hide show
  1. package/package.json +11 -11
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/wasm-graphviz-cli",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "hpcc-js - WASM Graphviz Cli",
5
5
  "type": "module",
6
6
  "bin": {
@@ -20,14 +20,14 @@
20
20
  "types/**/*"
21
21
  ],
22
22
  "scripts": {
23
- "clean": "rimraf ./dist ./types",
24
- "build-types": "tsc --project tsconfig.json --emitDeclarationOnly",
25
- "build-types-watch": "npm run build-types -- --watch",
26
- "build-ts-dev": "esbuild ./src/index.ts --platform=node --format=esm --bundle --packages=external --sourcemap --outfile=./bin/index.js --banner:js='#!/usr/bin/env node'",
27
- "build-ts": "npm run build-ts-dev --minify",
28
- "build-ts-watch": "npm run build-ts-dev -- --watch",
29
- "build-dev": "run-p build-types build-ts-dev",
30
- "build": "run-p build-types build-ts",
23
+ "clean": "rimraf bin types .nyc_output",
24
+ "gen-types": "tsc --project tsconfig.json --emitDeclarationOnly",
25
+ "gen-types-watch": "npm run gen-types -- --watch",
26
+ "bundle": "npm run bundle-dev --minify",
27
+ "bundle-dev": "esbuild ./src/index.ts --platform=node --format=esm --bundle --packages=external --sourcemap --outfile=./bin/index.js --banner:js='#!/usr/bin/env node'",
28
+ "bundle-watch": "npm run bundle-dev -- --watch",
29
+ "build-dev": "run-p gen-types bundle-dev",
30
+ "build": "run-p gen-types bundle",
31
31
  "lint-skypack": "npx -y @skypack/package-check",
32
32
  "lint-eslint": "eslint src/**/*.ts",
33
33
  "lint": "run-p lint-eslint",
@@ -36,7 +36,7 @@
36
36
  "update-major": "npx -y npm-check-updates -u"
37
37
  },
38
38
  "dependencies": {
39
- "@hpcc-js/wasm-graphviz": "1.5.0",
39
+ "@hpcc-js/wasm-graphviz": "^1.6.1",
40
40
  "yargs": "17.7.2"
41
41
  },
42
42
  "keywords": [
@@ -55,5 +55,5 @@
55
55
  },
56
56
  "homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
57
57
  "license": "Apache-2.0",
58
- "gitHead": "6f97b7b407abb2635e1cd68a4f4343581906d42c"
58
+ "gitHead": "37db45e93a831a9ccdca8eec95434bd348c2f615"
59
59
  }