@atlaspack/rust 2.12.1-dev.3367 → 2.12.1-dev.3398

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/browser.js CHANGED
@@ -6,7 +6,7 @@ let env;
6
6
  module.exports.init = async function init(input) {
7
7
  if (env) return;
8
8
 
9
- input = input ?? new URL('atlaspack_node_bindings.wasm', import.meta.url);
9
+ input = input ?? new URL('parcel_node_bindings.wasm', import.meta.url);
10
10
  const {instance} = await WebAssembly.instantiateStreaming(fetch(input), {
11
11
  env: {
12
12
  ...napi,
@@ -22,7 +22,7 @@ module.exports.init = async function init(input) {
22
22
  });
23
23
 
24
24
  // input =
25
- // input ?? require('path').join(__dirname, 'atlaspack_node_bindings.wasm');
25
+ // input ?? require('path').join(__dirname, 'parcel_node_bindings.wasm');
26
26
  // const {instance} = await WebAssembly.instantiate(
27
27
  // require('fs').readFileSync(input),
28
28
  // {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/rust",
3
- "version": "2.12.1-dev.3367+07fefed65",
3
+ "version": "2.12.1-dev.3398+81c73b3cd",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -36,5 +36,5 @@
36
36
  "wasm:build": "cargo build -p atlaspack-node-bindings --target wasm32-unknown-unknown && cp ../../../target/wasm32-unknown-unknown/debug/atlaspack_node_bindings.wasm .",
37
37
  "wasm:build-release": "CARGO_PROFILE_RELEASE_LTO=true cargo build -p atlaspack-node-bindings --target wasm32-unknown-unknown --release && wasm-opt --strip-debug -O ../../../target/wasm32-unknown-unknown/release/atlaspack_node_bindings.wasm -o atlaspack_node_bindings.wasm"
38
38
  },
39
- "gitHead": "07fefed65a9a4d7bd0bdc9c45b39704ee4ca70dd"
39
+ "gitHead": "81c73b3cdf93adf8b0013be9fed5422579bd5910"
40
40
  }