Skip to content

Commit

Permalink
Fix tenderly-hardhat tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Riphal committed Oct 13, 2022
2 parents c921317 + 2ee02ca commit 4371770
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@tenderly/hardhat-tenderly": patch
---

Fix @tenderly/hardhat-tenderly tsconfig
Fix @tenderly/hardhat-tenderly installation
2 changes: 1 addition & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"@tenderly/hardhat-tenderly": "1.2.0"
},
"changesets": [
"spicy-gorillas-remain"
"loud-walls-hang"
]
}
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
6 changes: 6 additions & 0 deletions packages/tenderly-hardhat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion packages/tenderly-hardhat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -20,6 +20,7 @@
],
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
Expand Down
6 changes: 2 additions & 4 deletions packages/tenderly-hardhat/tsconfig.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 4371770

Please sign in to comment.