Skip to content

Commit

Permalink
fix: adds "keep" flag to hardhat-dependency-compiler config
Browse files Browse the repository at this point in the history
  • Loading branch information
iPaulPro committed Jul 29, 2024
1 parent 91d251a commit c5ea5ea
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/hardhat/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,19 @@ const envFileName = process.env.NODE_ENV === "production" ? ".env" : `.env.${pro
const envFile = path.resolve(process.cwd(), envFileName);
dotenv.config({ path: envFile });

import { HardhatUserConfig } from "hardhat/config";
import "@nomicfoundation/hardhat-ethers";
import "@nomicfoundation/hardhat-chai-matchers";
import "@typechain/hardhat";
import "hardhat-gas-reporter";
import "solidity-coverage";
import "@nomicfoundation/hardhat-verify";
import "hardhat-dependency-compiler";
import "hardhat-deploy";
import "hardhat-deploy-ethers";
import "hardhat-dependency-compiler";
import "@openzeppelin/hardhat-upgrades";

import { HardhatUserConfig } from "hardhat/config";

// If not set, it uses ours Alchemy's default API key.
// You can get your own at https://dashboard.alchemyapi.io
const providerApiKey = process.env.ALCHEMY_API_KEY || "oKxs-03sij-U_N0iOlrSsZFr29-IqbuF";
Expand Down Expand Up @@ -79,6 +80,7 @@ const config: HardhatUserConfig = {
"lens-modules/contracts/namespaces/LensHandles.sol",
"lens-modules/contracts/namespaces/TokenHandleRegistry.sol",
],
keep: true,
},
defaultNetwork: "localhost",
namedAccounts: {
Expand Down

0 comments on commit c5ea5ea

Please sign in to comment.