Skip to content

Instantly share code, notes, and snippets.

@StephenFluin
Created March 10, 2017 04:21
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save StephenFluin/cbb5a3764a04de17abbf78ba0a33b53f to your computer and use it in GitHub Desktop.
Save StephenFluin/cbb5a3764a04de17abbf78ba0a33b53f to your computer and use it in GitHub Desktop.
Give the 2.4.x to 4.0.0-rc upgrade a try!
ng new my-project
cd my-project
# We have a working v2.4.x project now!
ng build -prod
# Let's save a working copy of the 2.4.x project
mv dist dist-2.4.x
# Now let's update to the latest version of Angular
npm install @angular/{animations,common,compiler,compiler-cli,core,forms,http,platform-browser,platform-browser-dynamic,platform-server,router}@next @angular/material@latest typescript@latest --save --save-exact
ng build -prod
mv dist dist-4.0.0
@splincode
Copy link

Hello. At one of the conferences in Moscow, we were given a link to this page. It was said that Angular developers were able to cut the library by 13 thousand lines. This is true?

Link to the report: https://www.dropbox.com/sh/u8hrc8koqmz7h6y/AABVLQZ6breCqJYiw9dRxFY3a/Angular%20Meetup%20%232.pdf?dl=0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment