forked from openscd/open-scd
-
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.
feat: make use of lerna nx (openscd#1462)
* feat: make use of lerna nx Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com> * chore: added project.json and corrected scripts Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com> * chore: removed not working test scripts Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com> * Update packages/open-scd/project.json * Update packages/plugins/project.json --------- Signed-off-by: Steffen van den Driest <steffen.van.den.driest@alliander.com> Co-authored-by: Juan Munoz <juan.munoz@alliander.com> Co-authored-by: Pascal Wilbrink <pascal.wilbrink@alliander.com>
- Loading branch information
1 parent
a6c5d3e
commit 94d68d7
Showing
14 changed files
with
16,072 additions
and
7,238 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
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 |
---|---|---|
|
@@ -20,3 +20,5 @@ node_modules/ | |
/.tsbuildinfo | ||
/.rollup.cache | ||
|
||
# lerna | ||
/lerna-debug.log |
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 @@ | ||
{ | ||
"$schema": "node_modules/lerna/schemas/lerna-schema.json", | ||
"version": "independent", | ||
"packages": ["packages/*"], | ||
"useNx": 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,25 @@ | ||
{ | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "nx/tasks-runners/default", | ||
"options": { | ||
"cacheableOperations": ["build"] | ||
} | ||
} | ||
}, | ||
"targetDefaults": { | ||
"lint": { | ||
"inputs": [ | ||
"default", | ||
"{workspaceRoot}/.eslintrc.json", | ||
"{workspaceRoot}/.eslintignore" | ||
] | ||
}, | ||
"test": { | ||
"inputs": ["default", "^default"] | ||
}, | ||
"build": { | ||
"dependsOn": ["clean", "^clean", "^build"] | ||
} | ||
} | ||
} |
Oops, something went wrong.