From c7a285c4a1c887c6a371e98a71fc26fcd0faa8f8 Mon Sep 17 00:00:00 2001 From: Arthur Abeilice Date: Mon, 4 May 2026 22:53:09 -0300 Subject: [PATCH] chore(scripts): simplify wagmi:gen script by removing redundant .env check --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 277c105..d023b06 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "lint:fix": "eslint . --fix", "format": "prettier --write \"src/**/*.{ts,vue,json}\"", "format:check": "prettier --check \"src/**/*.{ts,vue,json}\"", - "wagmi:gen": "(test -f p2pix-smart-contracts/.env || cp p2pix-smart-contracts/.env.example p2pix-smart-contracts/.env) && pushd p2pix-smart-contracts && bun install && popd && wagmi generate" + "wagmi:gen": "pushd p2pix-smart-contracts && bun install && popd && wagmi generate" }, "dependencies": { "@floating-ui/vue": "^1.1.11",