create-izi-noir 0.1.5 → 0.1.6

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/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -339,7 +339,7 @@ ${imports}
339
339
  // Helper to convert JS circuit function to Noir code
340
340
  function toNoir(circuitFn: Function): string {
341
341
  const parser = new AcornParser();
342
- const parsed = parser.parse(circuitFn);
342
+ const parsed = parser.parse(circuitFn, [], []);
343
343
  return generateNoir(parsed);
344
344
  }
345
345
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-izi-noir",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "CLI to scaffold IZI-NOIR ZK projects",
5
5
  "type": "module",
6
6
  "bin": {