Skip to content

Commit

Permalink
Merge branch 'fix-CI' into bengriffin1-token-gating-updates
Browse files Browse the repository at this point in the history
# Conflicts:
#	package.json
  • Loading branch information
Ethella committed Apr 4, 2024
2 parents b819853 + bf394eb commit 0e96947
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20
cache: 'yarn'
- run: |
yarn -v
Expand Down
2 changes: 1 addition & 1 deletion config/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"lib": ["es2018", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"target": "es5",
"target": "es6",
"strict": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
Expand Down
8 changes: 2 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"clean": "npm-run-all -s clean:*",
"clean:test-artifacts": "rimraf coverage",
"clean:build": "rimraf dist",
"clean_node_modules": "rimraf node_modules"
"clean_node_modules": "rimraf node_modules",
"prepare": "husky install"
},
"devDependencies": {
"@ikscodes/eslint-config": "^8.4.1",
Expand Down Expand Up @@ -59,11 +60,6 @@
"ethers": "^6.11.1",
"node-fetch": "^2.6.7"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --fix"
},
Expand Down

0 comments on commit 0e96947

Please sign in to comment.