-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore/upgrade greenwood v0.31.0 (#73)
- Loading branch information
1 parent
7d09b2c
commit 419ca71
Showing
15 changed files
with
3,249 additions
and
2,810 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
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 +1 @@ | ||
18.20.2 | ||
22.13.0 |
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,35 @@ | ||
import js from "@eslint/js"; | ||
import globals from "globals"; | ||
|
||
export default [ | ||
{ | ||
// https://github.com/eslint/eslint/discussions/18304#discussioncomment-9069706 | ||
ignores: [ | ||
".greenwood/*", | ||
"node_modules/*", | ||
"public/*", | ||
"reports/*", | ||
"storybook-static/**", | ||
"patches/**", | ||
], | ||
}, | ||
{ | ||
languageOptions: { | ||
parserOptions: { | ||
ecmaVersion: 2022, | ||
sourceType: "module", | ||
}, | ||
globals: { | ||
...globals.browser, | ||
...globals.mocha, | ||
...globals.chai, | ||
...globals.node, | ||
}, | ||
}, | ||
rules: { | ||
...js.configs.recommended.rules, | ||
// turn this off for Prettier | ||
"no-irregular-whitespace": "off" | ||
}, | ||
}, | ||
]; |
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
skip_processing = true | ||
|
||
[build.environment] | ||
NODE_VERSION = "18.12.1" | ||
NODE_VERSION = "22.x" |
Oops, something went wrong.