-
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.
feat(cli): support config persistence and local chart directory for f…
…st charts (#535) Signed-off-by: Lenin Mehedy <[email protected]> Signed-off-by: Deepak Mishra <[email protected]> Co-authored-by: Deepak Mishra <[email protected]>
- Loading branch information
1 parent
4c7c7be
commit 73f7c1b
Showing
43 changed files
with
11,123 additions
and
4,279 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
root: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
env: | ||
browser: true | ||
es2021: true | ||
extends: standard | ||
parserOptions: | ||
ecmaVersion: latest | ||
sourceType: module | ||
rules: {} | ||
overrides: | ||
- files: ["*.mjs"] | ||
parserOptions: | ||
ecmaVersion: latest | ||
sourceType: module |
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,7 +1,7 @@ | ||
const config = { | ||
verbose: true, | ||
transform: {}, | ||
}; | ||
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(mjs?)$', | ||
moduleFileExtensions: ['js', 'mjs'], | ||
verbose: true | ||
} | ||
|
||
export default config | ||
|
Oops, something went wrong.