@noir-lang/acvm_js 0.28.0-20a160c → 0.28.0-38acee5.aztec
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/nodejs/acvm_js.js +1 -1
- package/nodejs/acvm_js_bg.wasm +0 -0
- package/package.json +5 -3
- package/web/acvm_js.js +1 -1
- package/web/acvm_js_bg.wasm +0 -0
package/nodejs/acvm_js.js
CHANGED
|
@@ -1191,7 +1191,7 @@ module.exports.__wbindgen_function_table = function() {
|
|
|
1191
1191
|
};
|
|
1192
1192
|
|
|
1193
1193
|
module.exports.__wbindgen_closure_wrapper613 = function(arg0, arg1, arg2) {
|
|
1194
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1194
|
+
const ret = makeMutClosure(arg0, arg1, 193, __wbg_adapter_54);
|
|
1195
1195
|
return addHeapObject(ret);
|
|
1196
1196
|
};
|
|
1197
1197
|
|
package/nodejs/acvm_js_bg.wasm
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noir-lang/acvm_js",
|
|
3
|
-
"version": "0.28.0-
|
|
3
|
+
"version": "0.28.0-38acee5.aztec",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "https://github.com/noir-lang/acvm.git"
|
|
@@ -28,8 +28,10 @@
|
|
|
28
28
|
"test:browser": "web-test-runner",
|
|
29
29
|
"lint": "NODE_NO_WARNINGS=1 eslint . --ext .ts --ignore-path ./.eslintignore --max-warnings 0",
|
|
30
30
|
"publish": "echo 📡 publishing `$npm_package_name` && yarn npm publish",
|
|
31
|
-
"nightly:version": "jq --arg new_version \"-$(git rev-parse --short HEAD)\" '.version = .version + $new_version' package.json > package-tmp.json && mv package-tmp.json package.json",
|
|
32
|
-
"clean": "chmod u+w web nodejs || true && rm -rf web nodejs"
|
|
31
|
+
"nightly:version": "jq --arg new_version \"-$(git rev-parse --short HEAD)$1\" '.version = .version + $new_version' package.json > package-tmp.json && mv package-tmp.json package.json",
|
|
32
|
+
"clean": "chmod u+w web nodejs || true && rm -rf web nodejs",
|
|
33
|
+
"build:nix": "nix build -L .#acvm_js",
|
|
34
|
+
"install:from:nix": "yarn clean && yarn build:nix && cp -rL ./result/acvm_js/nodejs ./ && cp -rL ./result/acvm_js/web ./"
|
|
33
35
|
},
|
|
34
36
|
"devDependencies": {
|
|
35
37
|
"@esm-bundle/chai": "^4.3.4-fix.0",
|
package/web/acvm_js.js
CHANGED
|
@@ -1121,7 +1121,7 @@ function __wbg_get_imports() {
|
|
|
1121
1121
|
return addHeapObject(ret);
|
|
1122
1122
|
};
|
|
1123
1123
|
imports.wbg.__wbindgen_closure_wrapper613 = function(arg0, arg1, arg2) {
|
|
1124
|
-
const ret = makeMutClosure(arg0, arg1,
|
|
1124
|
+
const ret = makeMutClosure(arg0, arg1, 193, __wbg_adapter_54);
|
|
1125
1125
|
return addHeapObject(ret);
|
|
1126
1126
|
};
|
|
1127
1127
|
|
package/web/acvm_js_bg.wasm
CHANGED
|
Binary file
|