quickjs-emscripten-core
Advanced tools
Comparing version 0.25.0-rc.2 to 0.25.0-rc.3
{ | ||
"name": "quickjs-emscripten-core", | ||
"version": "0.25.0-rc.2", | ||
"version": "0.25.0-rc.3", | ||
"sideEffects": false, | ||
@@ -44,5 +44,5 @@ "license": "MIT", | ||
"dependencies": { | ||
"@jitl/quickjs-ffi-types": "0.25.0-rc.2" | ||
"@jitl/quickjs-ffi-types": "0.25.0-rc.3" | ||
}, | ||
"stableVersion": "0.24.0" | ||
} |
@@ -74,16 +74,16 @@ <!-- DO NOT EDIT THIS FILE. Edit README.template.md instead. --> | ||
### [@jitl/quickjs-node-cjs-debug-sync-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-cjs-debug-sync-wasm/README.md) | ||
### [@jitl/quickjs-node-debug-sync-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-debug-sync-wasm/README.md) | ||
Node.js CommonJS module | ||
Node.js build with both CommonJS and ESModule exports | ||
| Variable | Setting | Description | | ||
| ------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| releaseMode | debug | Enables assertions and memory sanitizers. Try to run your tests against debug variants, in addition to your preferred production variant, to catch more bugs. | | ||
| syncMode | sync | The default, normal build. Note that both variants support regular async functions. | | ||
| moduleSystem | commonjs | This variant exports a CommonJS module, which is faster to load and run in Node.js. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
| Variable | Setting | Description | | ||
| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| releaseMode | debug | Enables assertions and memory sanitizers. Try to run your tests against debug variants, in addition to your preferred production variant, to catch more bugs. | | ||
| syncMode | sync | The default, normal build. Note that both variants support regular async functions. | | ||
| moduleSystem | both | Contains both CommonJS and ESModule exports. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
### [@jitl/quickjs-node-cjs-debug-asyncify-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-cjs-debug-asyncify-wasm/README.md) | ||
### [@jitl/quickjs-node-debug-asyncify-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-debug-asyncify-wasm/README.md) | ||
Node.js CommonJS module | ||
Node.js build with both CommonJS and ESModule exports | ||
@@ -94,19 +94,19 @@ | Variable | Setting | Description | | ||
| syncMode | asyncify | Build run through the ASYNCIFY WebAssembly transform. Larger and slower. Allows synchronous calls from the WASM runtime to async functions on the host. The extra magic makes this variant slower than sync variants. Note that both variants support regular async functions. Only adopt ASYNCIFY if you need to! | | ||
| moduleSystem | commonjs | This variant exports a CommonJS module, which is faster to load and run in Node.js. | | ||
| moduleSystem | both | Contains both CommonJS and ESModule exports. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
### [@jitl/quickjs-node-cjs-release-sync-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-cjs-release-sync-wasm/README.md) | ||
### [@jitl/quickjs-node-release-sync-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-release-sync-wasm/README.md) | ||
Node.js CommonJS module | ||
Node.js build with both CommonJS and ESModule exports | ||
| Variable | Setting | Description | | ||
| ------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ||
| releaseMode | release | Optimized for performance; use when building/deploying your application. | | ||
| syncMode | sync | The default, normal build. Note that both variants support regular async functions. | | ||
| moduleSystem | commonjs | This variant exports a CommonJS module, which is faster to load and run in Node.js. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
| Variable | Setting | Description | | ||
| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ||
| releaseMode | release | Optimized for performance; use when building/deploying your application. | | ||
| syncMode | sync | The default, normal build. Note that both variants support regular async functions. | | ||
| moduleSystem | both | Contains both CommonJS and ESModule exports. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
### [@jitl/quickjs-node-cjs-release-asyncify-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-cjs-release-asyncify-wasm/README.md) | ||
### [@jitl/quickjs-node-release-asyncify-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-release-asyncify-wasm/README.md) | ||
Node.js CommonJS module | ||
Node.js build with both CommonJS and ESModule exports | ||
@@ -117,49 +117,5 @@ | Variable | Setting | Description | | ||
| syncMode | asyncify | Build run through the ASYNCIFY WebAssembly transform. Larger and slower. Allows synchronous calls from the WASM runtime to async functions on the host. The extra magic makes this variant slower than sync variants. Note that both variants support regular async functions. Only adopt ASYNCIFY if you need to! | | ||
| moduleSystem | commonjs | This variant exports a CommonJS module, which is faster to load and run in Node.js. | | ||
| moduleSystem | both | Contains both CommonJS and ESModule exports. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
### [@jitl/quickjs-node-esm-debug-sync-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-esm-debug-sync-wasm/README.md) | ||
Node.js ESModule | ||
| Variable | Setting | Description | | ||
| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ||
| releaseMode | debug | Enables assertions and memory sanitizers. Try to run your tests against debug variants, in addition to your preferred production variant, to catch more bugs. | | ||
| syncMode | sync | The default, normal build. Note that both variants support regular async functions. | | ||
| moduleSystem | esm | This variant exports an ESModule, which is standardized for browsers and more modern browser-like environments. It cannot be imported from CommonJS without shenanigans. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
### [@jitl/quickjs-node-esm-debug-asyncify-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-esm-debug-asyncify-wasm/README.md) | ||
Node.js ESModule | ||
| Variable | Setting | Description | | ||
| ------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ||
| releaseMode | debug | Enables assertions and memory sanitizers. Try to run your tests against debug variants, in addition to your preferred production variant, to catch more bugs. | | ||
| syncMode | asyncify | Build run through the ASYNCIFY WebAssembly transform. Larger and slower. Allows synchronous calls from the WASM runtime to async functions on the host. The extra magic makes this variant slower than sync variants. Note that both variants support regular async functions. Only adopt ASYNCIFY if you need to! | | ||
| moduleSystem | esm | This variant exports an ESModule, which is standardized for browsers and more modern browser-like environments. It cannot be imported from CommonJS without shenanigans. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
### [@jitl/quickjs-node-esm-release-sync-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-esm-release-sync-wasm/README.md) | ||
Node.js ESModule | ||
| Variable | Setting | Description | | ||
| ------------------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ||
| releaseMode | release | Optimized for performance; use when building/deploying your application. | | ||
| syncMode | sync | The default, normal build. Note that both variants support regular async functions. | | ||
| moduleSystem | esm | This variant exports an ESModule, which is standardized for browsers and more modern browser-like environments. It cannot be imported from CommonJS without shenanigans. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
### [@jitl/quickjs-node-esm-release-asyncify-wasm](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-node-esm-release-asyncify-wasm/README.md) | ||
Node.js ESModule | ||
| Variable | Setting | Description | | ||
| ------------------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ||
| releaseMode | release | Optimized for performance; use when building/deploying your application. | | ||
| syncMode | asyncify | Build run through the ASYNCIFY WebAssembly transform. Larger and slower. Allows synchronous calls from the WASM runtime to async functions on the host. The extra magic makes this variant slower than sync variants. Note that both variants support regular async functions. Only adopt ASYNCIFY if you need to! | | ||
| moduleSystem | esm | This variant exports an ESModule, which is standardized for browsers and more modern browser-like environments. It cannot be imported from CommonJS without shenanigans. | | ||
| emscriptenInclusion | wasm | Has a separate .wasm file. May offer better caching in your browser, and reduces the size of your JS bundle. If you have issues, try a 'singlefile' variant. | | ||
### [@jitl/quickjs-browser-debug-sync-singlefile](https://github.com/justjake/quickjs-emscripten/blob/main/doc/packages/@jitl/quickjs-browser-debug-sync-singlefile/README.md) | ||
@@ -166,0 +122,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
0
503803
205
+ Added@jitl/quickjs-ffi-types@0.25.0-rc.3(transitive)
- Removed@jitl/quickjs-ffi-types@0.25.0-rc.2(transitive)