Skip to content

Commit a48221d

Browse files
committed
Merge branch 'develop'
2 parents 950eb39 + c61a267 commit a48221d

22 files changed

+16696
-12163
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8+
## [1.2.0] - 2020‑09‑20
9+
10+
### Added
11+
### Changed
12+
- update to angular 10
13+
### Removed
14+
815
## [1.1.4] - 2020‑04‑23
916

1017
### Added

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Angular Google Tag Manager Service
22

33
A service library for integrate google tag manager in your angular project
4-
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 7.2.0.
4+
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version
55
For more info see this [how to install google tag manager article](https://itnext.io/how-to-add-google-tag-manager-to-an-angular-application-fc68624386e2)
66

77
## Getting Started

angular.json

+10-6
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,21 @@
44
"newProjectRoot": "projects",
55
"projects": {
66
"angular-google-tag-manager": {
7+
"projectType": "library",
78
"root": "projects/angular-google-tag-manager",
89
"sourceRoot": "projects/angular-google-tag-manager/src",
9-
"projectType": "library",
10-
"prefix": "agtm",
10+
"prefix": "lib",
1111
"architect": {
1212
"build": {
13-
"builder": "@angular-devkit/build-ng-packagr:build",
13+
"builder": "@angular-devkit/build-angular:ng-packagr",
1414
"options": {
1515
"tsConfig": "projects/angular-google-tag-manager/tsconfig.lib.json",
1616
"project": "projects/angular-google-tag-manager/ng-package.json"
17+
},
18+
"configurations": {
19+
"production": {
20+
"tsConfig": "projects/angular-google-tag-manager/tsconfig.lib.prod.json"
21+
}
1722
}
1823
},
1924
"test": {
@@ -37,7 +42,6 @@
3742
}
3843
}
3944
}
40-
}
41-
},
45+
}},
4246
"defaultProject": "angular-google-tag-manager"
43-
}
47+
}
File renamed without changes.

demo-application/angular.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
"build": {
1818
"builder": "@angular-devkit/build-angular:browser",
1919
"options": {
20+
"aot": true,
2021
"outputPath": "dist/demo-application",
2122
"index": "src/index.html",
2223
"main": "src/main.ts",
@@ -29,8 +30,7 @@
2930
"styles": [
3031
"src/styles.scss"
3132
],
32-
"scripts": [],
33-
"es5BrowserSupport": true
33+
"scripts": []
3434
},
3535
"configurations": {
3636
"production": {
@@ -54,6 +54,10 @@
5454
"type": "initial",
5555
"maximumWarning": "2mb",
5656
"maximumError": "5mb"
57+
},
58+
{
59+
"type": "anyComponentStyle",
60+
"maximumWarning": "6kb"
5761
}
5862
]
5963
}

0 commit comments

Comments
 (0)