From 0af0e7b351fd836ba23532088ea8d9b35cac38e4 Mon Sep 17 00:00:00 2001 From: Adam Gall Date: Mon, 15 Apr 2024 15:06:59 -0400 Subject: [PATCH] Back to a .ts extension for ABI export --- .gitignore | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index af7005c6..0995dcdd 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ node_modules /cache /artifacts /docs -deployments.json +deployments.ts # TypeChain files /typechain diff --git a/package.json b/package.json index 93cfa70f..826fc268 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "@fractal-framework/fractal-contracts", "version": "0.7.0", "files": [ - "deployments.json", + "deployments.ts", "contracts", "!contracts/mock" ], @@ -15,7 +15,7 @@ "compile": "hardhat compile", "docgen": "hardhat docgen", "test": "hardhat test", - "prepublishOnly": "npm run clean && npm run compile && npm run test && hardhat export --export-all deployments.json" + "prepublishOnly": "npm run clean && npm run compile && npm run test && hardhat export --export-all deployments.ts" }, "description": "A Safe Zodiac Module framework", "homepage": "https://github.com/decentdao/fractal-contracts/blob/develop/README.md",