diff --git a/.changeset/spicy-gorillas-remain.md b/.changeset/loud-walls-hang.md similarity index 50% rename from .changeset/spicy-gorillas-remain.md rename to .changeset/loud-walls-hang.md index 84b374af..425d8632 100644 --- a/.changeset/spicy-gorillas-remain.md +++ b/.changeset/loud-walls-hang.md @@ -2,4 +2,4 @@ "@tenderly/hardhat-tenderly": patch --- -Fix @tenderly/hardhat-tenderly tsconfig +Fix @tenderly/hardhat-tenderly installation diff --git a/.changeset/pre.json b/.changeset/pre.json index eba7497e..f1aa3ae2 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -6,6 +6,6 @@ "@tenderly/hardhat-tenderly": "1.2.0" }, "changesets": [ - "spicy-gorillas-remain" + "loud-walls-hang" ] } diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5fa16b77..744349b3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,10 +20,10 @@ jobs: # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits fetch-depth: 0 - - name: Setup Node.js 14.x + - name: Setup Node.js 16.x uses: actions/setup-node@v2 with: - node-version: 14.x + node-version: 16.x - name: Install Dependencies run: yarn @@ -32,7 +32,7 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Create Release Pull Request or Publish to npm - uses: changesets/action@master + uses: changesets/action@v1 with: # This expects you to have a script called release which does a build for your packages and calls changeset publish publish: yarn run release diff --git a/packages/tenderly-hardhat/CHANGELOG.md b/packages/tenderly-hardhat/CHANGELOG.md index 8358b222..0693aeea 100644 --- a/packages/tenderly-hardhat/CHANGELOG.md +++ b/packages/tenderly-hardhat/CHANGELOG.md @@ -1,5 +1,11 @@ # @tenderly/hardhat-tenderly +## 1.2.1-beta.3 + +### Patch Changes + +- Fix @tenderly/hardhat-tenderly installation + ## 1.2.1-beta.2 ### Patch Changes diff --git a/packages/tenderly-hardhat/package.json b/packages/tenderly-hardhat/package.json index 97effe88..26d392a2 100644 --- a/packages/tenderly-hardhat/package.json +++ b/packages/tenderly-hardhat/package.json @@ -4,7 +4,7 @@ "license": "MIT", "homepage": "https://tenderly.co", "description": "Hardhat plugin for integration with Tenderly", - "version": "1.2.1-beta.2", + "version": "1.2.1-beta.3", "main": "dist/index.js", "types": "dist/index.d.ts", "repository": { @@ -20,6 +20,7 @@ ], "files": [ "dist/", + "src/", "LICENSE", "README.md" ], diff --git a/packages/tenderly-hardhat/tsconfig.json b/packages/tenderly-hardhat/tsconfig.json index a0520d7d..1e4f3511 100644 --- a/packages/tenderly-hardhat/tsconfig.json +++ b/packages/tenderly-hardhat/tsconfig.json @@ -1,11 +1,9 @@ { "extends": "../../config/typescript/tsconfig.json", "compilerOptions": { - "outDir": "./dist", - "rootDirs": ["./src", "./test"] + "outDir": "./dist" }, - "exclude": ["./node_modules"], - "include": ["./test", "./src"], + "exclude": ["./dist", "./node_modules"], "references": [ { "path": "../tenderly-core/src"