Skip to content

Commit

Permalink
Merge branch 'release/1.7.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
m.zuccaroli committed Dec 9, 2022
2 parents aafadf5 + 61156bd commit 7b2f78f
Show file tree
Hide file tree
Showing 41 changed files with 5,637 additions and 30,852 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.7.0] - 2022-11-09

### Added
- Angular 15 support
### Changed
- Update to latest Angular 14 packages
- Update all packages to latest version except: typescript @types/node
- Update the lib to only support Angular ^15
- Update the demo app to Angular 15
- browserlistrc was removed
- environment files have been deleted
- angular.json was update to reflect that
- Explicit tslib version in the lib
- Removed demo app angular-google-tag-manager from the installed packages, it now use the one built locally
- Project structure to only have one package.json
### Removed

## [1.6.1] - 2022-07-24

### Added
Expand Down
82 changes: 82 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,88 @@
}
}
}
},
"demo-application": {
"root": "projects/demo-application",
"sourceRoot": "projects/demo-application/src",
"projectType": "application",
"prefix": "app",
"schematics": {
"@schematics/angular:component": {
"style": "scss"
}
},
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/demo-application",
"index": "projects/demo-application/src/index.html",
"main": "projects/demo-application/src/main.ts",
"polyfills": "projects/demo-application/src/polyfills.ts",
"tsConfig": "projects/demo-application/tsconfig.app.json",
"assets": [
"projects/demo-application/src/favicon.ico",
"projects/demo-application/src/assets"
],
"styles": [
"projects/demo-application/src/styles.scss"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
"buildOptimizer": false,
"sourceMap": true,
"optimization": false,
"namedChunks": true
},
"configurations": {
"production": {
"optimization": true,
"outputHashing": "all",
"sourceMap": false,
"namedChunks": false,
"extractLicenses": true,
"vendorChunk": false,
"buildOptimizer": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "2mb",
"maximumError": "5mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "6kb"
}
]
}
},
"defaultConfiguration": ""
},
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "demo-application:build"
},
"configurations": {
"production": {
"browserTarget": "demo-application:build:production"
}
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": [
"projects/demo-application/tsconfig.app.json"
],
"exclude": [
"**/node_modules/**"
]
}
}
}
}
},
"cli": {
Expand Down
11 changes: 0 additions & 11 deletions demo-application/.browserslistrc

This file was deleted.

13 changes: 0 additions & 13 deletions demo-application/.editorconfig

This file was deleted.

47 changes: 0 additions & 47 deletions demo-application/.gitignore

This file was deleted.

27 changes: 0 additions & 27 deletions demo-application/README.md

This file was deleted.

97 changes: 0 additions & 97 deletions demo-application/angular.json

This file was deleted.

Loading

0 comments on commit 7b2f78f

Please sign in to comment.