-
Notifications
You must be signed in to change notification settings - Fork 433
feat(AoT): ✨ ✨ added initial AoT support any many other things #151
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
Conversation
currently facing issues like angular/angular-cli#5802 cannot find browser-app.module.ngfactory
Added Bootstrap with SCSS / SASS support Added ng2-bootstrap Passing Server originURL so that URLs can use it (when 4.1 comes out with HttpInterceptors this will be even easier to do) :sparkles: AoT added ! for prod (npm run build:aot) - Still need to test this for Azure deployments etc Removed es6-shim added core-js
@MarkPieszak |
At the moment no, had to get it working first had some hurdles to get around 🙈 |
HMR code in main.browser.ts is patched in memory by ngtools? |
@MarkPieszak |
You did not hit this bug angular/angular-cli#5329 ? |
Ng tools automatically handles the browsers AoT files, server will be able to do the same thing soon, but that's the only reason there are duplicate (sort of) files for server and server.aot and the tsconfigs. HMR memory isn't here yet. |
I didn't get that issue, you're on windows 10? |
Ok, we need HMR. I am using ngtools only for production and keeping old loader stack for dev. Yea, I hit that bug under win10. |
The express engine I'm building here (which will be on npm soon) needs to be updated to only do AoT actually, doing JIT during SSR is just slower and there's no benefits to it. Still plenty to work on, never enough time! 😓 There's still HMR, it just doesn't hold the app state currently, didn't add back those hacks in. |
Added Bootstrap with SCSS / SASS support
Added ng2-bootstrap
Passing Server originURL so that URLs can use it (when 4.1 comes out (Closes #146 )
with HttpInterceptors this will be even easier to do)
✨ AoT added ! for prod (npm run build:aot) (Closes #10)
Removed es6-shim added core-js
Few other misc things...
Closes #61
Closes #149
Closes #92