@dxos/vendor-quickjs 0.9.0 → 0.9.1-staging.ee54ba693a

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/vendor-quickjs",
3
- "version": "0.9.0",
3
+ "version": "0.9.1-staging.ee54ba693a",
4
4
  "homepage": "https://dxos.org",
5
5
  "bugs": "https://github.com/dxos/dxos/issues",
6
6
  "repository": {
package/src/browser.js CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  export * from 'quickjs-emscripten';
6
6
 
7
- import { newVariant, RELEASE_SYNC, newQuickJSWASMModuleFromVariant } from 'quickjs-emscripten';
7
+ import { RELEASE_SYNC, newQuickJSWASMModuleFromVariant, newVariant } from 'quickjs-emscripten';
8
8
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
9
9
  // @ts-expect-error - ?url returns a URL resolving to the given asset.
10
10
  import wasmLocation from '@jitl/quickjs-wasmfile-release-sync/wasm?url';
package/src/node.js CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  export * from 'quickjs-emscripten';
6
6
 
7
- import { newQuickJSWASMModule, RELEASE_SYNC } from 'quickjs-emscripten';
7
+ import { RELEASE_SYNC, newQuickJSWASMModule } from 'quickjs-emscripten';
8
8
 
9
9
  export const createQuickJS = () => {
10
10
  return newQuickJSWASMModule(RELEASE_SYNC);