Skip to content

Commit

Permalink
Merge pull request #203 from tablelandnetwork/joe/export-fix
Browse files Browse the repository at this point in the history
Update build and publish files for local-tableland
  • Loading branch information
joewagner authored Nov 3, 2022
2 parents 51cedb4 + 377d606 commit 3f69785
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ bytecode.bin
gobuild
network.d*
network.js*
hardhat.config.d*
hardhat.config.js*
scripts/*.d*
scripts/*.js*

# Hardhat files
cache
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tableland/evm",
"version": "3.0.1",
"version": "3.0.2",
"description": "Tableland Tables EVM contracts and client components",
"engines": {
"node": ">=14.0.0"
Expand All @@ -9,16 +9,17 @@
"types": "typechain-types/index.d.ts",
"files": [
"network.*",
"hardhat.config.*",
"contracts",
"typechain-types/**/*.js?(.map)",
"typechain-types/**/*.d.ts",
"scripts"
],
"exports": {
".": "./typechain-types/index.js",
"./network.js": "./network.js",
"./network": "./network.js",
"./contracts/": "./contracts/",
"./scripts/deploy.ts": "./scripts/deploy.ts"
"./scripts/deploy.js": "./scripts/deploy.js"
},
"scripts": {
"build": "hardhat compile && npx tsc -p ./tsconfig.build.json",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"declarationMap": true,
"skipLibCheck": true
},
"include": ["./typechain-types/**/*"],
"files": ["network.ts"]
"include": ["./typechain-types/**/*", "./scripts/**/*"],
"files": ["network.ts", "hardhat.config.ts"]
}

0 comments on commit 3f69785

Please sign in to comment.