You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Environment
Provide version numbers for the following components (information can be retrieved by running tns info in your project folder or by inspecting the package.json of the project):
Describe the bug
After using tns migrate for a project with Angular 7, @angular/animations package is not updated - its still 7.x.x version.
To Reproduce
$ tns create myApp --template tns-template-hello-world-ng@5.2
$ cd myApp
$ tns migrate
# now check the project's package.json - `@angular/animations` version is still 7.x.x
Expected behavior
After migrate, the @angular/animations package should be migrated. In case it is not installed in the project before calling tns migrate, the migrate command should not add it.
Additional context
WORKAROUND: npm i --save-dev @angular/animations@~8.0
The text was updated successfully, but these errors were encountered:
Environment
Provide version numbers for the following components (information can be retrieved by running
tns info
in your project folder or by inspecting thepackage.json
of the project):Describe the bug
After using
tns migrate
for a project with Angular 7,@angular/animations
package is not updated - its still 7.x.x version.To Reproduce
Expected behavior
After migrate, the
@angular/animations
package should be migrated. In case it is not installed in the project before callingtns migrate
, the migrate command should not add it.Additional context
WORKAROUND:
npm i --save-dev @angular/animations@~8.0
The text was updated successfully, but these errors were encountered: