-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(core): avoid launching default plugins twice #29539
Merged
Merged
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -145,15 +145,67 @@ function isIsolationEnabled() { | |
return true; | ||
} | ||
|
||
const loadingMethod = isIsolationEnabled() | ||
? loadNxPluginInIsolation | ||
: loadNxPlugin; | ||
|
||
/** | ||
* Use `getPlugins` instead. | ||
* @deprecated Do not use this. Use `getPlugins` instead. | ||
* @deprecated prefer getOnlyDefaultPlugins | ||
*/ | ||
export async function loadNxPlugins( | ||
export async function loadDefaultNxPlugins(root = workspaceRoot) { | ||
performance.mark('loadDefaultNxPlugins:start'); | ||
|
||
const plugins = await getDefaultPlugins(root); | ||
|
||
const cleanupFunctions: Array<() => void> = []; | ||
const ret = [ | ||
await Promise.all( | ||
plugins.map(async (plugin) => { | ||
performance.mark(`Load Nx Plugin: ${plugin} - start`); | ||
|
||
const [loadedPluginPromise, cleanup] = await loadingMethod( | ||
plugin, | ||
root | ||
); | ||
|
||
cleanupFunctions.push(cleanup); | ||
const res = await loadedPluginPromise; | ||
performance.mark(`Load Nx Plugin: ${plugin} - end`); | ||
performance.measure( | ||
`Load Nx Plugin: ${plugin}`, | ||
`Load Nx Plugin: ${plugin} - start`, | ||
`Load Nx Plugin: ${plugin} - end` | ||
); | ||
|
||
return res; | ||
}) | ||
), | ||
() => { | ||
for (const fn of cleanupFunctions) { | ||
fn(); | ||
} | ||
if (unregisterPluginTSTranspiler) { | ||
unregisterPluginTSTranspiler(); | ||
} | ||
}, | ||
] as const; | ||
performance.mark('loadDefaultNxPlugins:end'); | ||
performance.measure( | ||
'loadDefaultNxPlugins', | ||
'loadDefaultNxPlugins:start', | ||
'loadDefaultNxPlugins:end' | ||
); | ||
return ret; | ||
} | ||
|
||
/** | ||
* @deprecated prefer getPlugins | ||
*/ | ||
export async function loadSpecifiedNxPlugins( | ||
plugins: PluginConfiguration[], | ||
root = workspaceRoot | ||
): Promise<readonly [LoadedNxPlugin[], () => void]> { | ||
performance.mark('loadNxPlugins:start'); | ||
performance.mark('loadSpecifiedNxPlugins:start'); | ||
const loadingMethod = isIsolationEnabled() | ||
? loadNxPluginInIsolation | ||
: loadNxPlugin; | ||
|
@@ -193,23 +245,38 @@ export async function loadNxPlugins( | |
} | ||
}, | ||
] as const; | ||
performance.mark('loadNxPlugins:end'); | ||
performance.mark('loadSpecifiedNxPlugins:end'); | ||
performance.measure( | ||
'loadNxPlugins', | ||
'loadNxPlugins:start', | ||
'loadNxPlugins:end' | ||
'loadSpecifiedNxPlugins', | ||
'loadSpecifiedNxPlugins:start', | ||
'loadSpecifiedNxPlugins:end' | ||
); | ||
return ret; | ||
} | ||
|
||
/** | ||
* Use `getPlugins` instead. | ||
* @deprecated Do not use this. Use `getPlugins` instead. | ||
*/ | ||
export async function loadNxPlugins( | ||
plugins: PluginConfiguration[], | ||
root = workspaceRoot | ||
): Promise<readonly [LoadedNxPlugin[], () => void]> { | ||
const defaultPlugins = await loadDefaultNxPlugins(root); | ||
const specifiedPlugins = await loadSpecifiedNxPlugins(plugins, root); | ||
|
||
const combinedCleanup = () => { | ||
specifiedPlugins[1](); | ||
defaultPlugins[1](); | ||
}; | ||
|
||
return [specifiedPlugins[0].concat(defaultPlugins[0]), combinedCleanup]; | ||
} | ||
|
||
async function normalizePlugins(plugins: PluginConfiguration[], root: string) { | ||
plugins ??= []; | ||
|
||
return [ | ||
...plugins, | ||
// Most of the nx core node plugins go on the end, s.t. it overwrites any other plugins | ||
...(await getDefaultPlugins(root)), | ||
]; | ||
return [...plugins]; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe we don't have to normalize plugins at all anymore? |
||
} | ||
|
||
export async function getDefaultPlugins(root: string) { | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is now only used in 2 tests. Can we get rid of this function?