forked from nrwl/nx
-
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(angular): support esbuild-based executors/builders in @nx/angula…
…r:dev-server (nrwl#20311)
- Loading branch information
1 parent
0f6c116
commit 40f8c40
Showing
24 changed files
with
327 additions
and
81 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
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
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,9 +1,19 @@ | ||
export * from './src/builders/module-federation-dev-server/module-federation-dev-server.impl'; | ||
export * from './src/builders/module-federation-dev-ssr/module-federation-dev-ssr.impl'; | ||
export * from './src/builders/webpack-browser/webpack-browser.impl'; | ||
export * from './src/builders/webpack-dev-server/webpack-dev-server.impl'; | ||
export * from './src/builders/webpack-server/webpack-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'; | ||
|
||
import { executeDevServerBuilder } from './src/builders/dev-server/dev-server.impl'; | ||
|
||
export { | ||
// TODO(v18): remove this alias | ||
/** | ||
* @deprecated Use executeDevServerBuilder instead. It will be removed in Nx v18. | ||
*/ | ||
executeDevServerBuilder as executeWebpackDevServerBuilder, | ||
executeDevServerBuilder, | ||
}; |
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
Oops, something went wrong.