generated from Bullrich/parity-action-template
-
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.
Upgraded packages to latest version (#28)
Upgraded yarn to version 4 Upgraded all the dependencies to latest. - papi `0.4.0` -> `0.9.0` which contains a fix for polkadot-api/polkadot-api#327
- Loading branch information
Showing
9 changed files
with
8,040 additions
and
4,434 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
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 |
---|---|---|
|
@@ -12,3 +12,4 @@ | |
|
||
# Papi | ||
src/codegen | ||
.yarn/install-state.gz |
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.1.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
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,16 +1,17 @@ | ||
{ | ||
"name": "get-fellows-action", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "Fetch all the GitHub handles from the Fellows", | ||
"main": "src/index.ts", | ||
"scripts": { | ||
"start": "node dist", | ||
"build": "ncc build --license LICENSE", | ||
"postinstall": "papi", | ||
"test": "vitest", | ||
"fix": "eslint --fix 'src/**/*'", | ||
"lint": "eslint 'src/**/*'" | ||
"fix": "npx eslint --fix 'src/**/*.ts' && npx prettier --write 'src/**/*.{ts,yml}'", | ||
"lint": "npx eslint 'src/**/*.ts' && npx prettier --check 'src/**/*.{ts,yml}'" | ||
}, | ||
"packageManager": "[email protected]", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/Bullrich/parity-action-template.git" | ||
|
@@ -24,13 +25,13 @@ | |
"dependencies": { | ||
"@actions/core": "^1.10.1", | ||
"@actions/github": "^5.1.1", | ||
"polkadot-api": "^0.4.0", | ||
"smoldot": "2.0.22" | ||
"polkadot-api": "^0.9.0", | ||
"smoldot": "2.0.29" | ||
}, | ||
"devDependencies": { | ||
"@eng-automation/js-style": "^2.3.1", | ||
"@vercel/ncc": "^0.38.0", | ||
"typescript": "^5.2.2", | ||
"vitest": "^1.5.0" | ||
"@eng-automation/js-style": "^3.1.0", | ||
"@vercel/ncc": "^0.38.1", | ||
"typescript": "^5.5.3", | ||
"vitest": "^1.6.0" | ||
} | ||
} |
Oops, something went wrong.