diff --git a/packages/hardhat-core/package.json b/packages/hardhat-core/package.json index ea70eef965..c677c7eb38 100644 --- a/packages/hardhat-core/package.json +++ b/packages/hardhat-core/package.json @@ -1,10 +1,13 @@ { - "name": "hardhat", + "name": "@slingshot_finance/hardhat", "version": "2.6.4", "author": "Nomic Labs LLC", "license": "SEE LICENSE IN LICENSE", "homepage": "https://hardhat.org", - "repository": "github:nomiclabs/hardhat", + "repository": { + "type": "git", + "url": "git+https://github.com/nomiclabs/hardhat.git" + }, "main": "internal/lib/hardhat-lib.js", "types": "internal/lib/hardhat-lib.d.ts", "description": "Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.", @@ -161,5 +164,11 @@ "lcovonly" ], "all": true + }, + "bugs": { + "url": "https://github.com/nomiclabs/hardhat/issues" + }, + "directories": { + "test": "test" } } diff --git a/packages/hardhat-core/src/internal/cli/cli.ts b/packages/hardhat-core/src/internal/cli/cli.ts index b58ff6f33f..a2b2b3f637 100755 --- a/packages/hardhat-core/src/internal/cli/cli.ts +++ b/packages/hardhat-core/src/internal/cli/cli.ts @@ -111,7 +111,8 @@ async function main() { } if (!isHardhatInstalledLocallyOrLinked()) { - throw new HardhatError(ERRORS.GENERAL.NON_LOCAL_INSTALLATION); + console.log("Using hardhat custom implementation "); + // throw new HardhatError(ERRORS.GENERAL.NON_LOCAL_INSTALLATION); } if (willRunWithTypescript(hardhatArguments.config)) {