@aztec/noir-noir_codegen 0.85.0 → 0.86.0-nightly.20250425

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.
Files changed (2) hide show
  1. package/lib/main.js +2 -2
  2. package/package.json +3 -3
package/lib/main.js CHANGED
@@ -14,8 +14,8 @@ function main() {
14
14
  const programs = files.map((file_path) => {
15
15
  const program_name = path.parse(file_path).name;
16
16
  const file_contents = fs.readFileSync(file_path).toString();
17
- const { abi, bytecode } = JSON.parse(file_contents);
18
- return [program_name, { abi, bytecode }];
17
+ const { abi, bytecode, debug_symbols, file_map } = JSON.parse(file_contents);
18
+ return [program_name, { abi, bytecode, debug_symbols, file_map }];
19
19
  });
20
20
  const result = codegen(programs, !cliConfig.externalArtifact, cliConfig.useFixedLengthArrays);
21
21
  const outputDir = path.resolve(cliConfig.outDir ?? './codegen');
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "contributors": [
4
4
  "The Noir Team <team@noir-lang.org>"
5
5
  ],
6
- "version": "0.85.0",
6
+ "version": "0.86.0-nightly.20250425",
7
7
  "packageManager": "yarn@4.5.2",
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
- "@aztec/noir-types": "0.85.0",
20
+ "@aztec/noir-types": "0.86.0-nightly.20250425",
21
21
  "glob": "^10.4.5",
22
22
  "ts-command-line-args": "^2.5.1"
23
23
  },
@@ -46,7 +46,7 @@
46
46
  "clean": "rm -rf ./lib"
47
47
  },
48
48
  "devDependencies": {
49
- "@aztec/noir-noir_js": "0.85.0",
49
+ "@aztec/noir-noir_js": "0.86.0-nightly.20250425",
50
50
  "@types/chai": "^4",
51
51
  "@types/mocha": "^10.0.10",
52
52
  "@types/node": "^22.13.10",