@componentor/quickjs-wasmfs-release-sync 0.31.14 → 0.31.16
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/emscripten-module.browser.d.ts +9 -5
- package/dist/emscripten-module.browser.mjs +74 -80
- package/dist/emscripten-module.wasm +0 -0
- package/dist/ffi.d.mts +14 -4
- package/dist/ffi.d.ts +14 -4
- package/dist/ffi.js +1 -1
- package/dist/ffi.js.map +1 -1
- package/dist/ffi.mjs +1 -1
- package/dist/ffi.mjs.map +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["import type {
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"sourcesContent":["import type { QuickJSAsyncVariant } from \"@componentor/quickjs-ffi-types\"\n\n/**\n * ### @componentor/quickjs-wasmfs-release-sync\n *\n * QuickJS variant with WasmFS and OPFS support for native filesystem access\n * in browsers. Uses ASYNCIFY for non-blocking OPFS backend creation.\n *\n * | Variable | Setting | Description |\n * | -- | -- | -- |\n * | library | quickjs | The original [bellard/quickjs](https://github.com/bellard/quickjs) library. |\n * | releaseMode | release | Optimized for performance. |\n * | syncMode | asyncify | Uses ASYNCIFY for OPFS backend (required for non-blocking OPFS operations). |\n * | emscriptenInclusion | wasm | Has a separate .wasm file with WasmFS + OPFS support. |\n * | exports | browser | Browser-only (OPFS is a browser API) |\n *\n */\nconst variant: QuickJSAsyncVariant = {\n type: \"async\",\n importFFI: () => import(\"./ffi.js\").then((mod) => mod.QuickJSAsyncFFI),\n importModuleLoader: () =>\n import(\"@componentor/quickjs-wasmfs-release-sync/emscripten-module\").then((mod) => mod.default),\n} as const\n\nexport default variant\n"],"mappings":"AAiBA,IAAM,QAA+B,CACnC,KAAM,QACN,UAAW,IAAM,OAAO,WAAU,EAAE,KAAM,KAAQ,IAAI,eAAe,EACrE,mBAAoB,IAClB,OAAO,4DAA4D,EAAE,KAAM,KAAQ,IAAI,OAAO,CAClG,EAEO,cAAQ","names":[]}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@componentor/quickjs-wasmfs-release-sync",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "0.31.
|
|
5
|
-
"description": "QuickJS variant with WasmFS and OPFS support for native filesystem access in browsers
|
|
4
|
+
"version": "0.31.16",
|
|
5
|
+
"description": "QuickJS variant with WasmFS and OPFS support for native filesystem access in browsers. Uses ASYNCIFY for non-blocking OPFS backend creation.",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@componentor/quickjs-ffi-types": "0.31.
|
|
46
|
+
"@componentor/quickjs-ffi-types": "0.31.16"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@jitl/tsconfig": "0.31.
|
|
49
|
+
"@jitl/tsconfig": "0.31.16"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "pnpm run build:c && pnpm run build:ts",
|