Skip to content

Commit

Permalink
chore(angular): update to v9
Browse files Browse the repository at this point in the history
  • Loading branch information
RaschidJFR committed Jan 21, 2021
1 parent 2cf892f commit 3250e14
Show file tree
Hide file tree
Showing 6 changed files with 79 additions and 34 deletions.
5 changes: 4 additions & 1 deletion angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,8 @@
}
}
},
"defaultProject": "ngx-googlemaps-tracking-view"
"defaultProject": "ngx-googlemaps-tracking-view",
"cli": {
"analytics": false
}
}
60 changes: 51 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,42 +17,42 @@
},
"private": true,
"dependencies": {
"@angular/animations": "~8.2.14",
"@angular/common": "~8.2.14",
"@angular/compiler": "~8.2.14",
"@angular/core": "~8.2.14",
"@angular/forms": "~8.2.14",
"@angular/platform-browser": "~8.2.14",
"@angular/platform-browser-dynamic": "~8.2.14",
"@angular/router": "~8.2.14",
"@angular/animations": "~9.1.13",
"@angular/common": "~9.1.13",
"@angular/compiler": "~9.1.13",
"@angular/core": "~9.1.13",
"@angular/forms": "~9.1.13",
"@angular/platform-browser": "~9.1.13",
"@angular/platform-browser-dynamic": "~9.1.13",
"@angular/router": "~9.1.13",
"angular-cli-ghpages": "^0.5.3",
"core-js": "^2.5.4",
"rxjs": "~6.6.3",
"zone.js": "~0.9.1"
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.29",
"@angular-devkit/build-ng-packagr": "~0.803.29",
"@angular/cli": "~8.3.29",
"@angular/compiler-cli": "~8.2.14",
"@angular/language-service": "~8.2.14",
"@angular-devkit/build-angular": "~0.901.13",
"@angular-devkit/build-ng-packagr": "~0.901.13",
"@angular/cli": "~9.1.13",
"@angular/compiler-cli": "~9.1.13",
"@angular/language-service": "~9.1.13",
"@types/googlemaps": "^3.37.3",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"codelyzer": "~4.5.0",
"codelyzer": "^5.2.2",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^5.7.1",
"ng-packagr": "^9.1.5",
"protractor": "~5.4.0",
"ts-node": "~7.0.0",
"tsickle": "^0.37.0",
"tsickle": "^0.39.1",
"tslib": "^1.14.1",
"tslint": "~5.11.0",
"typescript": "~3.5.3"
"typescript": "~3.8.3"
}
}
}
2 changes: 0 additions & 2 deletions projects/ngx-googlemaps-tracking-view/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
export * from './public-api';
export * from './lib/models/tracked-object';
export * from './lib/components/geolocation-button/geolocation-button';
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ import { HttpClient } from '@angular/common/http';
// encapsulation: ViewEncapsulation.ShadowDom,
})
export class NgxGooglemapsTrackingViewComponent implements OnInit {
// tslint:disable-next-line: no-any
@ViewChild('map', { static: true } as any) mapDiv: ElementRef;
@ViewChild('map', { static: true }) mapDiv: ElementRef;
/**
* A marker fixed to the center of the map which emits the geo-decoded location
* as a full address.
Expand Down
5 changes: 4 additions & 1 deletion projects/ngx-googlemaps-tracking-view/src/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
*/

export * from './lib/ngx-googlemaps-tracking-view.component';
export * from './lib/ngx-googlemaps-tracking-view.module';
export * from './lib/ngx-googlemaps-tracking-view.module';
export * from './lib/models/tracked-object';
export * from './lib/components/geolocation-button/geolocation-button';
export * from './lib/components/infowindow/infowindow.component';

0 comments on commit 3250e14

Please sign in to comment.