-
-
Notifications
You must be signed in to change notification settings - Fork 136
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Initial builds of ng2 apps are slow #436
Comments
Also one other thing to note: I did confirm that subsequent builds are a lot faster, ~30 seconds for the app I was testing with. So this only seems to be a problem for the first build. |
Hi @tjvantoll |
The only way to do this is to do the file parsing. On dummy solution would seem to be to search for __extends to filter typescript code. For example there only 83 files in angular2 source dir out of 1091 js files there. This would not be working correctly since there may be interfaces extends in these files or the file may not be transpiled from Typescript. The way to reliably know which files have defined native extends is to parse it and even this has drawbacks. (we are parsing Javascript after all) |
One possible way to handle this is to do the parsing at install time. * This will only mask the problem. One other way is to provide plugin authors with packaging tooling to build and ship these static bindings as part of the plugin package. * This will rely on plugin authors to be "good citizens". |
Another possible solution is to develop a convention where we say: |
I think most of the android specific code is in |
@PanayotCankov this will artificially limit the developer to use *.android.js for android code. Having an if (android) statement in platform agnostic code might be desirable at times. To my mind this is leaking the problem outside of the problem zone too much. The parsing is a performance feature to an extend, that all of a sudden requires changes to how I name my files. I am looking into this as a app developer that would rather have this sorted out by the framework. In that view for a plugin to be parsed at install time or at packaging/publishing time is perfect for me since I will not change it post install. |
@PanayotCankov In addition to what @blagoev said, say we were to follow a file naming convention, we could exclude all files but |
@blagoev We already had to recommend deleting the I do not insist on using the P.S. The build time on my machine for blank angular app is 13 minutes so whatever you do to address this I'd be happy. |
@PanayotCankov I stand corrected, files indeed preserve their original name until copied to the |
This comment was marked as abuse.
This comment was marked as abuse.
@NathanaelA Adding a key in the package.json to indicate your plugin has android code would be cool. And having |
What about a simpler solution - we read the package.json at the root level of each folder and if it doesn't contain a This means that we won't have to traverse any fat pure JavaScript frameworks or dependencies. In addition, if found necessary, there can be an extra custom key/flag in the package.json to instruct the binding generator against traversal of said package. Also, in the near future, when generated files become part of the @PanayotCankov @NathanaelA @Plamen5kov @blagoev @slavchev @atanasovg |
@Pip3r4o 👍 perfect way to solving it. It allows us in the future to choose parsing the runtime version in the package.json and switch between two different versions of the static binding generator if we need to. |
…generator Update Static Binding Generator - Fix issue #436
Good news, everyone! The fix is in the master branch and can be used by installing platform |
Awesome, I am seeing builds down to ~16 sec from ~200 sec on Android. |
Hey all,
While trying out the 2.0 release I noticed that the build time of my ng2 apps had gone up significantly—from ~1 minute to ~2–3 minutes.
More specifically, the build seems to hang at the Babel step:
It hung on that step for about a full minute, so I had actually assumed the build was stuck and was going to fail. As a small step I’d love to see some additional output while the Babel step runs—just so users don’t think something has went wrong—and as a bigger step it’d be great if we could find a way to speed up this build step, especially for ng2 apps.
Thanks!
The text was updated successfully, but these errors were encountered: