-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8c7a284
commit 6132aa2
Showing
8 changed files
with
8,244 additions
and
4,792 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
/node_modules | ||
/dist* | ||
.env | ||
.yarn/install-state.gz | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.3.0.cjs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,11 @@ | |
"build": "ncc build --license LICENSE", | ||
"cli": "ncc build src/cli.ts -o dist-cli && node dist-cli", | ||
"test": "jest", | ||
"fix": "eslint --fix '{src,test}/**/*'", | ||
"lint": "eslint '{src,test}/**/*'" | ||
"fix": "npx eslint --fix 'src/**/*.ts' && npx prettier --write 'src/**/*.{ts,yml}'", | ||
"lint": "npx eslint 'src/**/*.ts' && npx prettier --check 'src/**/*.{ts,yml}'" | ||
}, | ||
"engines": { | ||
"node": ">=20.0.0" | ||
"node": ">=22.0.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -25,21 +25,22 @@ | |
}, | ||
"homepage": "https://github.com/paritytech/review-bot#readme", | ||
"devDependencies": { | ||
"@eng-automation/js-style": "^2.3.0", | ||
"@eng-automation/js-style": "^3.1.0", | ||
"@octokit/webhooks-types": "^7.3.1", | ||
"@types/jest": "^29.5.11", | ||
"@vercel/ncc": "^0.38.1", | ||
"jest": "^29.7.0", | ||
"jest-mock-extended": "^3.0.5", | ||
"ts-jest": "^29.1.2", | ||
"typescript": "^5.3.3" | ||
"typescript": "^5.4.5" | ||
}, | ||
"dependencies": { | ||
"@actions/core": "^1.10.1", | ||
"@actions/github": "^6.0.0", | ||
"@eng-automation/js": "^1.0.2", | ||
"@polkadot/api": "^10.13.1", | ||
"joi": "^17.6.4", | ||
"@eng-automation/js": "^2.2.0", | ||
"@polkadot/api": "^11.3.1", | ||
"joi": "^17.13.1", | ||
"yaml": "^2.3.4" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.