@noir-lang/noir_codegen 1.0.0-beta.3 → 1.0.0-beta.3-7aa23ec.nightly
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.
|
@@ -4,9 +4,9 @@ const codegenPrelude = `/* Autogenerated file, do not edit! */
|
|
|
4
4
|
|
|
5
5
|
/* eslint-disable */
|
|
6
6
|
|
|
7
|
-
import { Noir, InputMap, CompiledCircuit, ForeignCallHandler } from "@noir-lang/noir_js"
|
|
7
|
+
import { Noir, InputMap, type CompiledCircuit, type ForeignCallHandler } from "@noir-lang/noir_js"
|
|
8
8
|
|
|
9
|
-
export { ForeignCallHandler } from "@noir-lang/noir_js"
|
|
9
|
+
export { type ForeignCallHandler } from "@noir-lang/noir_js"
|
|
10
10
|
`;
|
|
11
11
|
/**
|
|
12
12
|
* Returns the last component of a path, e.g. "foo::bar::baz" -\> "baz"
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"contributors": [
|
|
4
4
|
"The Noir Team <team@noir-lang.org>"
|
|
5
5
|
],
|
|
6
|
-
"version": "1.0.0-beta.3",
|
|
6
|
+
"version": "1.0.0-beta.3-7aa23ec.nightly",
|
|
7
7
|
"packageManager": "yarn@3.5.1",
|
|
8
8
|
"license": "(MIT OR Apache-2.0)",
|
|
9
9
|
"type": "module",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"url": "https://github.com/noir-lang/noir/issues"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@noir-lang/types": "1.0.0-beta.3",
|
|
20
|
+
"@noir-lang/types": "1.0.0-beta.3-7aa23ec.nightly",
|
|
21
21
|
"glob": "^10.3.10",
|
|
22
22
|
"ts-command-line-args": "^2.5.1"
|
|
23
23
|
},
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"dev": "tsc-multi --watch",
|
|
36
36
|
"build": "tsc",
|
|
37
37
|
"test": "yarn test:codegen && yarn test:node && yarn test:clean",
|
|
38
|
-
"test:codegen": "nargo export --program-dir=./test/test_lib && tsx src/main.ts ./test/test_lib/export/** --out-dir ./test/codegen",
|
|
38
|
+
"test:codegen": "${NARGO:-nargo} export --program-dir=./test/test_lib && tsx src/main.ts ./test/test_lib/export/** --out-dir ./test/codegen",
|
|
39
39
|
"test:node": "mocha --timeout 25000 --exit --config ./.mocharc.json",
|
|
40
40
|
"test:clean": "rm -rf ./test/codegen ./test/test_lib/export",
|
|
41
41
|
"prettier": "prettier 'src/**/*.ts'",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"clean": "rm -rf ./lib"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@noir-lang/noir_js": "1.0.0-beta.3",
|
|
49
|
+
"@noir-lang/noir_js": "1.0.0-beta.3-7aa23ec.nightly",
|
|
50
50
|
"@types/chai": "^4",
|
|
51
51
|
"@types/mocha": "^10.0.1",
|
|
52
52
|
"@types/node": "^20.6.2",
|