Skip to content

Commit

Permalink
Merge branch 'release/2.1.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
RaschidJFR committed Aug 8, 2021
2 parents 90a527e + a5d34ac commit 99ff348
Show file tree
Hide file tree
Showing 23 changed files with 11,098 additions and 8,654 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog
# 2.1.0 (21-08-08)
## Added
* Export service `GoogleMapsWrapper`

# 2.0.0 (21-01-21)
## Changes
* Upgraded to Angular 10

# 1.5.1 (20-04-07)
### Fixed
* Error `Cannot read property 'nativeElement' of undefined` in Angular +8.
Expand Down Expand Up @@ -47,4 +55,4 @@
* [Documentation](https://raschidjfr.github.io/ngx-googlemaps-tracking-view/reference) and [live demo](https://raschidjfr.github.io/ngx-googlemaps-tracking-view/) on Github Pages.

## 1.0.0 (19-08-14)
First release
First release
File renamed without changes.
34 changes: 27 additions & 7 deletions demo/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"vendorSourceMap": true,
"preserveSymlinks": true,
"outputPath": "www",
"index": "src/index.html",
Expand All @@ -35,13 +34,25 @@
],
"styles": [
{
"input": "src/theme/variables.scss"
"input": "src/theme/variables.scss",
"inject": true
},
{
"input": "src/global.scss"
"input": "src/global.scss",
"inject": true
}
],
"scripts": []
"scripts": [],
"sourceMap": {
"styles": true,
"scripts": true,
"vendor": true
},
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
Expand All @@ -54,9 +65,7 @@
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"extractCss": true,
"namedChunks": false,
"aot": true,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
Expand All @@ -65,13 +74,24 @@
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
]
},
"ci": {
"budgets": [
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
],
"progress": false
}
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
Expand Down
Loading

0 comments on commit 99ff348

Please sign in to comment.