@hpcc-js/wasm-duckdb 1.4.0 → 1.5.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 +4 -4
  2. package/package.json +15 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/wasm-duckdb",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "description": "hpcc-js - WASM DuckDB",
5
5
  "type": "module",
6
6
  "exports": {
@@ -17,28 +17,29 @@
17
17
  "types/**/*"
18
18
  ],
19
19
  "scripts": {
20
- "clean": "rimraf ./build ./dist ./dist-test ./types",
20
+ "clean": "rimraf coverage build dist dist-test types",
21
21
  "pack-duckdb-eh-worker-node": "npx -y mkdirp build && node ./utils/sfx-wasm.js ../../node_modules/@duckdb/duckdb-wasm/dist/duckdb-node-eh.worker.cjs > ./build/duckdb-node-eh.worker.ts",
22
22
  "pack-duckdb-eh-worker": "npx -y mkdirp build && node ./utils/sfx-wasm.js ../../node_modules/@duckdb/duckdb-wasm/dist/duckdb-browser-eh.worker.js > ./build/duckdb-browser-eh.worker.ts",
23
23
  "pack-duckdb-eh": "npx -y mkdirp build && node ./utils/sfx-wasm.js ../../node_modules/@duckdb/duckdb-wasm/dist/duckdb-eh.wasm > ./build/duckdb-eh.wasm.ts",
24
24
  "pack-duckdb": "run-p pack-duckdb-eh pack-duckdb-eh-worker pack-duckdb-eh-worker-node",
25
- "build-types": "tsc --project tsconfig.json --emitDeclarationOnly",
26
- "build-types-watch": "npm run build-types -- --watch",
27
- "build-ts": "node esbuild.mjs",
28
- "build-ts-dev": "npm run build-ts -- --development",
29
- "build-ts-watch": "npm run build-ts-dev -- --watch",
30
- "build-dev": "run-p build-types build-ts-dev",
31
- "build": "npm-run-all --serial pack-duckdb --parallel build-types build-ts",
25
+ "gen-types": "tsc --project tsconfig.json --emitDeclarationOnly",
26
+ "gen-types-watch": "npm run gen-types -- --watch",
27
+ "bundle": "node esbuild.js",
28
+ "bundle-dev": "npm run bundle -- --development",
29
+ "bundle-watch": "npm run bundle-dev -- --watch",
30
+ "build-dev": "run-p gen-types bundle-dev",
31
+ "build": "npm-run-all --serial pack-duckdb --parallel gen-types bundle",
32
32
  "lint-skypack": "npx -y @skypack/package-check",
33
- "lint-eslint": "eslint src/**/*.ts spec/*.ts",
33
+ "lint-eslint": "eslint src/**/*.ts tests/**/*.ts",
34
34
  "lint": "run-p lint-eslint",
35
- "test-browser": "jasmine-browser-runner runSpecs",
36
- "test": "run-s test-browser",
35
+ "test-browser": "vitest run --project browser",
36
+ "test": "vitest run",
37
+ "coverage": "vitest run --coverage",
37
38
  "update": "npx -y npm-check-updates -u -t minor",
38
39
  "update-major": "npx -y npm-check-updates -u"
39
40
  },
40
41
  "devDependencies": {
41
- "@duckdb/duckdb-wasm": "1.28.1-dev106.0",
42
+ "@duckdb/duckdb-wasm": "next",
42
43
  "mkdirp": "3.0.1"
43
44
  },
44
45
  "keywords": [
@@ -55,5 +56,5 @@
55
56
  },
56
57
  "homepage": "https://hpcc-systems.github.io/hpcc-js-wasm/",
57
58
  "license": "Apache-2.0",
58
- "gitHead": "6f97b7b407abb2635e1cd68a4f4343581906d42c"
59
+ "gitHead": "4b279928d3cbcbb2cebc5c33226d15c1d6043966"
59
60
  }