create-izi-noir 0.2.1 → 0.2.2
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/dist/index.js +5 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -305,7 +305,9 @@ function generatePackageJson(options) {
|
|
|
305
305
|
"@noir-lang/noirc_abi": "1.0.0-beta.13-1d260df.nightly",
|
|
306
306
|
"react": "^18.3.1",
|
|
307
307
|
"react-dom": "^18.3.1",
|
|
308
|
-
"prism-react-renderer": "^2.4.1"
|
|
308
|
+
"prism-react-renderer": "^2.4.1",
|
|
309
|
+
"buffer": "^6.0.3",
|
|
310
|
+
"util": "^0.12.5"
|
|
309
311
|
};
|
|
310
312
|
if (isSolana) {
|
|
311
313
|
dependencies["@solana/wallet-adapter-react"] = "^0.15.0";
|
|
@@ -592,6 +594,7 @@ export default defineConfig({
|
|
|
592
594
|
alias: {
|
|
593
595
|
"@": path.resolve(__dirname, "./src"),
|
|
594
596
|
buffer: "buffer/",
|
|
597
|
+
util: "util/",
|
|
595
598
|
},
|
|
596
599
|
},
|
|
597
600
|
define: {
|
|
@@ -599,7 +602,7 @@ export default defineConfig({
|
|
|
599
602
|
},
|
|
600
603
|
optimizeDeps: {
|
|
601
604
|
exclude: ["@noir-lang/noir_wasm", "@aztec/bb.js", "@izi-noir/sdk"],
|
|
602
|
-
include: ["buffer"],
|
|
605
|
+
include: ["buffer", "util"],
|
|
603
606
|
},
|
|
604
607
|
build: {
|
|
605
608
|
rollupOptions: {
|