Skip to content

Commit 0e96947

Browse files
committed
Merge branch 'fix-CI' into bengriffin1-token-gating-updates
# Conflicts: # package.json
2 parents b819853 + bf394eb commit 0e96947

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.github/workflows/publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup node
2121
uses: actions/setup-node@v3
2222
with:
23-
node-version: 16
23+
node-version: 20
2424
cache: 'yarn'
2525
- run: |
2626
yarn -v

config/tsconfig.base.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"lib": ["es2018", "dom"],
44
"module": "commonjs",
55
"moduleResolution": "node",
6-
"target": "es5",
6+
"target": "es6",
77
"strict": true,
88
"allowSyntheticDefaultImports": true,
99
"experimentalDecorators": true,

package.json

+2-6
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
"clean": "npm-run-all -s clean:*",
2727
"clean:test-artifacts": "rimraf coverage",
2828
"clean:build": "rimraf dist",
29-
"clean_node_modules": "rimraf node_modules"
29+
"clean_node_modules": "rimraf node_modules",
30+
"prepare": "husky install"
3031
},
3132
"devDependencies": {
3233
"@ikscodes/eslint-config": "^8.4.1",
@@ -59,11 +60,6 @@
5960
"ethers": "^6.11.1",
6061
"node-fetch": "^2.6.7"
6162
},
62-
"husky": {
63-
"hooks": {
64-
"pre-commit": "lint-staged"
65-
}
66-
},
6763
"lint-staged": {
6864
"*.{ts,tsx}": "eslint --fix"
6965
},

0 commit comments

Comments
 (0)