forked from dxatscale/sfpowerscripts
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(lerna): upgrade lerna version (dxatscale#1357)
* build(lerna): upgrade lerna version Lerna v7 has been released which deprecates old workflows from before package managers had workspace capabilities. Workspaces are now used by default and the useWorkspaces property from lerna.json has been removed. This upgrades the dev dependency for lerna to v7 ensuring v7 is used in ci, and includes changes to lerna.json and nx.json from running lerna repair in the repository root. * ci(lerna): removes lerna bootstrap from ci Removes bootstrap as this is now deprecated in lerna v7.
- Loading branch information
1 parent
7a0cd39
commit a28534f
Showing
5 changed files
with
1,902 additions
and
2,211 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,25 @@ | ||
{ | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "nx/tasks-runners/default", | ||
"options": { | ||
"cacheableOperations": [ | ||
"build", | ||
"compile", | ||
"test" | ||
] | ||
} | ||
} | ||
}, | ||
"targetDefaults": { | ||
"build": { | ||
"dependsOn": [ | ||
"^build" | ||
], | ||
"outputs": [ | ||
"{projectRoot}/lib" | ||
] | ||
"$schema": "./node_modules/nx/schemas/nx-schema.json", | ||
"tasksRunnerOptions": { | ||
"default": { | ||
"runner": "nx/tasks-runners/default", | ||
"options": { | ||
"cacheableOperations": ["build", "compile", "test"] | ||
} | ||
} | ||
}, | ||
"targetDefaults": { | ||
"build": { | ||
"dependsOn": ["^build"], | ||
"outputs": ["{projectRoot}/lib"] | ||
}, | ||
"compile": { | ||
"outputs": ["{projectRoot}/lib"] | ||
} | ||
}, | ||
"compile": { | ||
"outputs": [ | ||
"{projectRoot}/lib" | ||
] | ||
"namedInputs": { | ||
"default": ["{projectRoot}/**/*", "sharedGlobals"], | ||
"sharedGlobals": [], | ||
"production": ["default"] | ||
} | ||
} | ||
} |
Oops, something went wrong.