-
Notifications
You must be signed in to change notification settings - Fork 12k
Support for user defined bundles #1541
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
Comments
I would also like a way to add my own plugins to the build process also. For example I would like to add a plugin that will write a .htaccess file to configure HTTP/2 push. |
In my particular use case I am building a browser extension. The extension consists on a popup when clicking the extension button which opens an angular application. It also uses injected scripts to enhance the current web page the user is viewing. I would like to use Typescript and have code reuse with the popup window. Currently I am accomplishing it with the separate webpack/gulp script but this requires another command-line and additional tools to be running. |
#1633 allows adding more files to be compiled. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Is it possible to define additional bundles in an angular-cli project? I thought it may be possible by defining a second app in the
angular-cli.json
file but this does not appear to be the case. Currently to achieve this I have an externalwebpack.config.js
file and I'm runningwebpack
to create the separate bundles alongside what angular-cli produces. The end goal would be to be able to create them all with just one command.The text was updated successfully, but these errors were encountered: