Angular Update-Szenarien

Updated . Posted . Visible to the public.

Updating Angular und Components

Hier gibt es eine Seite, wo man Source und Destination-Version angeben kann und bekommt eine ToDo-List, was man alles machen muss: Angular-Update-Info Show archive.org snapshot

Breaking-Changes

Es gibt folgendes zu beachten beim Umstieg auf Angular 6:
Wenn es folgenden Error gibt:

ERROR in ./node_modules/jszip/lib/readable-stream-browser.js
Module not found: Error: Can't resolve 'stream' in 'c:\Source\TestProject\node_modules\jszip\lib'

dann folgendes in die tsconfig.json einbauen:

{
  ...
  "compilerOptions": {
    ...
    "paths": {
      "jszip": [
        "node_modules/jszip/dist/jszip.min.js"
      ]
    }
  }
}
Stephan Blaurock
Last edit
Stephan Blaurock
Posted by Stephan Blaurock to Programming KB (2018-05-17 15:23)