Skip to content

Commit

Permalink
Fix/Updated dependencies (#415)
Browse files Browse the repository at this point in the history
* refactor: upgrade minor version of node packages

* refactor: upgrade the express-winston version

* refactor: upgrade the fs-extra version

* refactor: upgrade the @types/fs-extra version

* refactor: upgrade the nanoid version

* refactor: upgrade the lru-cache version

* refactor: remove the deprecated @types/lru-cache version

* refactor: upgrade the ts-node version

* refactor: upgrade the supertest version

* refactor: upgrade the @types/express-winston version

* refactor: upgrade the @types/nanoid version

* refactor: upgrade the safe packages of admin module

* fix: filestream error in reader unit tests

* refactor: upgrade the safe packages of reader module

* refactor: upgrade the hub ts version

* refactor: upgrade the admin ts version

* refactor: upgrade the reader ts version

* refactor: upgrade the lint package version

* refactor: upgrade the version of packages for json validator

* refactor: upgrade the tape version

* refactor: upgrade the greenlock version

* refactor: upgrade the bitconjs version

* refactor: upgrade the blockstack version

* refactor: upgrade the safe packages of admin module

* refactor: upgrade the safe packages of reader module

* refactor: upgrade the aws version

* refactor: upgrade the jsontokens version

* fix: testing actions after version upgrade

* refactor: change the coverage from nyc to c8

* refactor: upgrade the azure version

* refactor: upgrade the minor version of safe packages

* refactor: upgrade the minor version of safe packages

* refactor: upgrade the minor version of safe packages

* refactor: upgrade the packages of root project

* Bugfix: Remove slack from github action workflow

* Hotfix: Add workflow_dispatch

* refactor: move c8 to dev dependencies

* refactor: migrate cjs to esm (reader)

* refactor: migrate cjs to esm (admin)

* refactor: migrate cjs to esm (hub)

* refactor: change tape test into jest test (hub)

* refactor: change tape test into jest test (admin)

* refactor: change tape test into jest test (reader)

* refactor: upgrade the version of all packages

* Update gaia.yml

Co-authored-by: fritzsima <[email protected]>
Co-authored-by: bjorger <[email protected]>
  • Loading branch information
3 people authored Jul 12, 2022
1 parent 8c8b461 commit 7214f68
Show file tree
Hide file tree
Showing 61 changed files with 45,087 additions and 28,396 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/gaia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
@semantic-release/changelog
@semantic-release/git
semantic-release-slack-bot
build-publish:
runs-on: ubuntu-latest
needs: semantic-release
Expand Down Expand Up @@ -101,4 +100,4 @@ jobs:
# Only push if there's a new release on main branch, or if building a non-main branch
# push: ${{ github.ref != 'refs/heads/master' || needs.semantic-release.outputs.new_release_version != '' }}
# Temporarily halt pushes
push: false
push: false
18 changes: 18 additions & 0 deletions reader/.eslintrc.js → admin/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,15 @@ module.exports = {
"node": true,
"es6": true
},
"settings": {
"import/resolver": {
"node": {
"paths": ["src"],
"extensions": [".js", ".ts", ".d.ts"]
},
"typescript": {}
},
},
"rules": {
"comma-dangle": ["error", "never"],
"quotes": [2, "single"],
Expand Down Expand Up @@ -66,5 +75,14 @@ module.exports = {

// TODO: enable this when reasonable
"@typescript-eslint/no-explicit-any": "off",

"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-return": "off",
},
"globals": {
"NodeJS": true
}
};
Loading

0 comments on commit 7214f68

Please sign in to comment.