-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(tools): move from lerna to npm workspace + nx (#632)
- Loading branch information
1 parent
87a9446
commit df62729
Showing
100 changed files
with
58,588 additions
and
271,107 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,6 @@ | ||
# Generated files | ||
CHANGELOG.md | ||
package-lock.json | ||
|
||
# Prettier run at the package level. | ||
packages/ |
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,3 +1 @@ | ||
/lib | ||
/packages/angular/dist | ||
/packages/cli-e2e/ui-packages | ||
/packages |
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,41 +1,4 @@ | ||
{ | ||
"ignorePatterns": ["node_modules"], | ||
"env": { | ||
"jest": true | ||
}, | ||
"extends": ["prettier"], | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"sourceType": "module" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["**/*.ts", "**/*.tsx"], | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint"], | ||
"extends": ["./node_modules/gts"], | ||
"parserOptions": { | ||
"jsxPragma": "h" | ||
}, | ||
"rules": { | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{"ignoreRestSiblings": true, "argsIgnorePattern": "^_"} | ||
], | ||
"@typescript-eslint/explicit-member-accessibility": "error", | ||
"@typescript-eslint/prefer-for-of": "error" | ||
} | ||
}, | ||
{ | ||
"files": ["**/*.js", "**/*.jsx"], | ||
"extends": ["eslint:recommended"], | ||
"rules": { | ||
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}] | ||
}, | ||
"env": { | ||
"node": true | ||
} | ||
} | ||
], | ||
"root": true | ||
"extends": "./base.eslintrc", | ||
"ignorePatterns": ["node_modules", "packages"] | ||
} |
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
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 |
---|---|---|
|
@@ -15,4 +15,5 @@ artifacts | |
|
||
ui-projects | ||
|
||
!.vscode/extensions.json | ||
!.vscode/extensions.json | ||
topology.json |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ | ||
"ignorePatterns": ["node_modules"], | ||
"env": { | ||
"jest": true | ||
}, | ||
"extends": ["prettier"], | ||
"parserOptions": { | ||
"ecmaVersion": 2020, | ||
"sourceType": "module" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["**/*.ts", "**/*.tsx"], | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint"], | ||
"extends": ["./node_modules/gts"], | ||
"parserOptions": { | ||
"jsxPragma": "h" | ||
}, | ||
"rules": { | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{"ignoreRestSiblings": true, "argsIgnorePattern": "^_"} | ||
], | ||
"@typescript-eslint/explicit-member-accessibility": "error", | ||
"@typescript-eslint/prefer-for-of": "error" | ||
} | ||
}, | ||
{ | ||
"files": ["**/*.js", "**/*.jsx"], | ||
"extends": ["eslint:recommended"], | ||
"rules": { | ||
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}] | ||
}, | ||
"env": { | ||
"node": true | ||
} | ||
} | ||
], | ||
"root": true | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"extends": "@nrwl/workspace/presets/core.json", | ||
"npmScope": "cli-tools", | ||
"affected": { | ||
"defaultBase": "master" | ||
}, | ||
"cli": { | ||
"defaultCollection": "@nrwl/workspace" | ||
}, | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "@nrwl/workspace/tasks-runners/default", | ||
"options": { | ||
"cacheableOperations": ["build", "lint", "test", "e2e"] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.