-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #98 from crazy-max/yarn-update
update to yarn 3.6.3
- Loading branch information
Showing
13 changed files
with
7,624 additions
and
4,907 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
/coverage | ||
/node_modules | ||
|
||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# yarn v2 | ||
.yarn/cache | ||
.yarn/unplugged | ||
.yarn/build-state.yml | ||
.yarn/install-state.gz | ||
.pnp.* |
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,2 +1,4 @@ | ||
/.yarn/releases/** binary | ||
/.yarn/plugins/** binary | ||
/dist/** linguist-generated=true | ||
/lib/** linguist-generated=true |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Dependency directories | ||
node_modules/ | ||
jspm_packages/ | ||
|
||
# yarn v2 | ||
.yarn/ |
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,13 @@ | ||
logFilters: | ||
- code: YN0013 | ||
level: discard | ||
- code: YN0019 | ||
level: discard | ||
- code: YN0076 | ||
level: discard | ||
|
||
nodeLinker: node-modules | ||
|
||
plugins: | ||
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs | ||
spec: "@yarnpkg/plugin-interactive-tools" |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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,17 +1,16 @@ | ||
{ | ||
"name": "docker-buildx-bake", | ||
"description": "GitHub Action to use Docker Buildx Bake as a high-level build command", | ||
"main": "lib/main.js", | ||
"main": "src/main.ts", | ||
"scripts": { | ||
"build": "ncc build src/main.ts --source-map --minify --license licenses.txt", | ||
"build": "ncc build --source-map --minify --license licenses.txt", | ||
"lint": "yarn run prettier && yarn run eslint", | ||
"format": "yarn run prettier:fix && yarn run eslint:fix", | ||
"eslint": "eslint --max-warnings=0 .", | ||
"eslint:fix": "eslint --fix .", | ||
"prettier": "prettier --check \"./**/*.ts\"", | ||
"prettier:fix": "prettier --write \"./**/*.ts\"", | ||
"test": "jest", | ||
"all": "yarn run build && yarn run format && yarn test" | ||
"test": "jest" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -25,6 +24,7 @@ | |
], | ||
"author": "Docker Inc.", | ||
"license": "Apache-2.0", | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
"@actions/core": "^1.10.1", | ||
"@docker/actions-toolkit": "^0.22.0", | ||
|
Oops, something went wrong.