@duckdb/duckdb-wasm 0.0.41-dev283.0 → 0.0.41-dev323.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.
- package/dist/duckdb-browser-async-next-coi.pthread.worker.js +3 -3
- package/dist/duckdb-browser-async-next-coi.pthread.worker.js.map +2 -2
- package/dist/duckdb-browser-async-next-coi.worker.js +3 -3
- package/dist/duckdb-browser-async-next-coi.worker.js.map +2 -2
- package/dist/duckdb-browser-async-next.worker.js +3 -3
- package/dist/duckdb-browser-async-next.worker.js.map +1 -1
- package/dist/duckdb-browser-async.js +2 -2
- package/dist/duckdb-browser-async.js.map +1 -1
- package/dist/duckdb-browser-async.worker.js +3 -3
- package/dist/duckdb-browser-async.worker.js.map +2 -2
- package/dist/duckdb-browser-sync-next.js +3 -3
- package/dist/duckdb-browser-sync-next.js.map +1 -1
- package/dist/duckdb-browser-sync.js +3 -3
- package/dist/duckdb-browser-sync.js.map +2 -2
- package/dist/duckdb-esm.js +1 -1
- package/dist/duckdb-esm.js.map +1 -1
- package/dist/duckdb-next-coi.wasm +0 -0
- package/dist/duckdb-next.wasm +0 -0
- package/dist/duckdb-node-async-next.worker.js +3 -3
- package/dist/duckdb-node-async-next.worker.js.map +2 -2
- package/dist/duckdb-node-async.js +1 -1
- package/dist/duckdb-node-async.js.map +1 -1
- package/dist/duckdb-node-async.worker.js +2 -2
- package/dist/duckdb-node-async.worker.js.map +2 -2
- package/dist/duckdb-node-sync-next.js +3 -3
- package/dist/duckdb-node-sync-next.js.map +2 -2
- package/dist/duckdb-node-sync.js +2 -2
- package/dist/duckdb-node-sync.js.map +2 -2
- package/dist/duckdb.wasm +0 -0
- package/dist/tests-browser.js +6 -5
- package/dist/tests-browser.js.map +2 -2
- package/dist/tests-node.js +48 -48
- package/dist/tests-node.js.map +2 -2
- package/dist/types/src/bindings/config.d.ts +1 -0
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duckdb/duckdb-wasm",
|
|
3
|
-
"version": "0.0.41-
|
|
3
|
+
"version": "0.0.41-dev323.0",
|
|
4
4
|
"description": "DuckDB powered by WebAssembly",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -16,14 +16,14 @@
|
|
|
16
16
|
"@types/jasmine": "^3.9.1",
|
|
17
17
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
18
18
|
"@typescript-eslint/parser": "^4.33.0",
|
|
19
|
-
"esbuild": "^0.13.
|
|
19
|
+
"esbuild": "^0.13.7",
|
|
20
20
|
"eslint": "^7.32.0",
|
|
21
21
|
"eslint-config-prettier": "^8.3.0",
|
|
22
22
|
"eslint-plugin-jasmine": "^4.1.2",
|
|
23
23
|
"eslint-plugin-prettier": "^4.0.0",
|
|
24
24
|
"eslint-plugin-react": "^7.26.1",
|
|
25
|
-
"jasmine": "3.
|
|
26
|
-
"jasmine-core": "^3.
|
|
25
|
+
"jasmine": "^3.10.0",
|
|
26
|
+
"jasmine-core": "^3.10.0",
|
|
27
27
|
"jasmine-spec-reporter": "^7.0.0",
|
|
28
28
|
"karma": "^6.3.4",
|
|
29
29
|
"karma-chrome-launcher": "^3.1.0",
|
|
@@ -51,6 +51,7 @@
|
|
|
51
51
|
"docs": "typedoc",
|
|
52
52
|
"report": "node ./coverage.mjs",
|
|
53
53
|
"test:node": "node --enable-source-maps --experimental-wasm-eh ../../node_modules/jasmine/bin/jasmine ./dist/tests-node.js",
|
|
54
|
+
"test:node:debug": "node --inspect-brk --enable-source-maps --experimental-wasm-eh ../../node_modules/jasmine/bin/jasmine ./dist/tests-node.js",
|
|
54
55
|
"test:node:filter": "node --enable-source-maps --experimental-wasm-eh ../../node_modules/jasmine/bin/jasmine ./dist/tests-node.js --filter=\"CSV\"",
|
|
55
56
|
"test:node:coverage": "nyc -r json --report-dir ./coverage/node node --experimental-wasm-eh ../../node_modules/jasmine/bin/jasmine ./dist/tests-node.js",
|
|
56
57
|
"test:firefox": "karma start ./karma/tests-firefox.cjs",
|