Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1003 Bytes

File metadata and controls

60 lines (40 loc) · 1003 Bytes

Migration

All necessary changes that have to be made if projects are to be changed.

2.3.2 to 2.3.3

  • remove status badge for david.dm from readme

2.0.1 to 2.0.2 to 2.1.0 to 2.2.0 to 2.2.1 to 2.3.0 to 2.3.1 to 2.3.2

  • not documented

2.0.0 to 2.0.1

  • 🎉 nothing todo

1.1.1 to 2.0.0

1.1.0 to 1.1.1

  • 🎉 nothing todo

1.0.1 to 1.1.0

  • update the projects swaaplate.json file described in Changelog 1.1.0
  • add the package manager to your angular.json on root like this:
"cli": {
  "packageManager": "yarn"
},

1.0.0 to 1.0.1

  • update the projects angular component html files like this:

From:

<div fxLayout="row">
  <div fxFlex="20%"></div>
  <div fxFlex>
    ...
  </div>
  <div fxFlex="20%"></div>
</div>

To:

<div fxLayout="row" fxLayoutAlign="center">
  <div fxFlex="60">
    ...
  </div>
</div>