File tree 4 files changed +14
-9
lines changed
4 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 17
17
"@angular/common" : " ^12.0.0" ,
18
18
"@angular/compiler" : " ^12.0.0" ,
19
19
"@angular/core" : " ^12.0.0" ,
20
- "@angular/fire" : " 7.0.0-canary.6fb0f6d " ,
20
+ "@angular/fire" : " 7.0.0-canary.32f57c2 " ,
21
21
"@angular/forms" : " ^12.0.0" ,
22
22
"@angular/platform-browser" : " ^12.0.0" ,
23
23
"@angular/platform-browser-dynamic" : " ^12.0.0" ,
Original file line number Diff line number Diff line change 216
216
dependencies :
217
217
tslib "^2.2.0"
218
218
219
- " @angular/fire@7.0.0-canary.6fb0f6d " :
220
- version "7.0.0-canary.6fb0f6d "
221
- resolved "https://registry.yarnpkg.com/@angular/fire/-/fire-7.0.0-canary.6fb0f6d .tgz#04d8871d84e5d4a9ddda39640c153709f62e4b76 "
222
- integrity sha512-X4V6VY5wKIQSig65OWDF6TCUWHs2/gcSz4jOmCz2wYLBob4RA0K4OWnvApMpbEntoh0TuTWWlqZgYFQ26t18Rw ==
219
+ " @angular/fire@7.0.0-canary.32f57c2 " :
220
+ version "7.0.0-canary.32f57c2 "
221
+ resolved "https://registry.yarnpkg.com/@angular/fire/-/fire-7.0.0-canary.32f57c2 .tgz#f22a08f8ab74968cf1d7ad3899c8172b58be6225 "
222
+ integrity sha512-LniVulI209Z8GLa0rgrr43kJYW6dDIcaxhlRpq8/sv4x2eOKbwDGqnrnDPZkGwLbp7F19B61hLyMSO5aA7+IpA ==
223
223
dependencies :
224
224
tslib "^2.0.0"
225
225
Original file line number Diff line number Diff line change 4
4
"migration-v7" : {
5
5
"version" : " 7.0.0" ,
6
6
"description" : " Update @angular/fire to v7" ,
7
- "factory" : " ./public-api #ngUpdateV7"
7
+ "factory" : " ./public_api #ngUpdateV7"
8
8
},
9
9
"ng-post-upgate" : {
10
10
"description" : " Print out results after ng-update" ,
11
- "factory" : " ./public-api #ngPostUpdate" ,
11
+ "factory" : " ./public_api #ngPostUpdate" ,
12
12
"private" : true
13
13
}
14
14
}
Original file line number Diff line number Diff line change 1
- export const ngPostUpdate = ( ) => ( ) => {
2
- console . log ( 'something' ) ;
1
+ import { Rule , SchematicContext , Tree } from '@angular-devkit/schematics' ;
2
+
3
+ export const ngPostUpdate = ( ) : Rule => (
4
+ host : Tree ,
5
+ context : SchematicContext
6
+ ) => {
7
+ return host ;
3
8
} ;
You can’t perform that action at this time.
0 commit comments