<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> Currently, the default for remotes is to server them as development. Which means a separate node process for each remote that is inside the workspace. This does not scale well and can lead to out of memory exceptions. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> Remotes will start as static by default, which allows for better scaling as the remotes increase. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> TODO - [ ] Migrations
22 lines
1.0 KiB
TypeScript
22 lines
1.0 KiB
TypeScript
export * from './src/builders/webpack-browser/webpack-browser.impl';
|
|
export * from './src/builders/webpack-server/webpack-server.impl';
|
|
export * from './src/executors/module-federation-dev-server/module-federation-dev-server.impl';
|
|
export * from './src/executors/delegate-build/delegate-build.impl';
|
|
export * from './src/executors/ng-packagr-lite/ng-packagr-lite.impl';
|
|
export * from './src/executors/package/package.impl';
|
|
export * from './src/executors/browser-esbuild/browser-esbuild.impl';
|
|
export * from './src/executors/application/application.impl';
|
|
export * from './src/executors/extract-i18n/extract-i18n.impl';
|
|
export * from './src/executors/module-federation-ssr-dev-server/module-federation-ssr-dev-server.impl';
|
|
|
|
import { executeDevServerBuilder } from './src/builders/dev-server/dev-server.impl';
|
|
|
|
export {
|
|
// TODO(v20): remove this alias
|
|
/**
|
|
* @deprecated Use executeDevServerBuilder instead. It will be removed in Nx v20.
|
|
*/
|
|
executeDevServerBuilder as executeWebpackDevServerBuilder,
|
|
executeDevServerBuilder,
|
|
};
|