Skip to content

Commit

Permalink
Update Angular to 17.1.2, SatPopover version 11.0.0 (#291)
Browse files Browse the repository at this point in the history
* Update Angular to 17.1.2, SatPopover version 11.0.0

* Update demo.component.ts

Fix mat-app-background class not being set on the host element

* package lock

* fixed warnings/builds

---------

Co-authored-by: Isaac Kehle <[email protected]>
  • Loading branch information
wjaspers and Isaac Kehle authored Mar 5, 2024
1 parent c93c887 commit 3ee085b
Show file tree
Hide file tree
Showing 32 changed files with 5,784 additions and 4,111 deletions.
47 changes: 47 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "",
"style": "kebab-case"
}
]
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended",
"plugin:@angular-eslint/template/accessibility"
],
"rules": {}
}
]
}
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CHANGELOG

## 11.0.0 jimny-cricket

### Breaking Changes

- Peer dependencies of @angular/{\*\*} are now set to ^17.1.2
- Any reference to `SatPopover` must be changed to `SatPopoverComponent`.
This complies with the [Angular style guide](https://angular.io/guide/styleguide#style-02-03).
- tslint is removed in favor of eslint.
- ivy build options are removed and no longer supported, as they are the default.

## 10.3.2 thrice-asnice

- Updated other packages
Expand All @@ -19,7 +29,7 @@

## 10.2.2 freaky-deaky

Tagging got screwed up. 10.2.2 is good.
Tagging got screwed up. 10.2.2 is good.

## 10.2.1 silly-vanilly

Expand Down
18 changes: 8 additions & 10 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,9 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": ["src/lib/tsconfig.lib.json", "src/lib/tsconfig.spec.json"],
"exclude": ["**/node_modules/**", "**/*.spec.ts"]
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
}
}
}
Expand All @@ -47,7 +46,7 @@
"root": "src/demo",
"sourceRoot": "src/demo",
"projectType": "application",
"prefix": "app",
"prefix": "",
"schematics": {},
"architect": {
"build": {
Expand Down Expand Up @@ -96,18 +95,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "demo:build"
"buildTarget": "demo:build"
},
"configurations": {
"production": {
"browserTarget": "demo:build:production"
"buildTarget": "demo:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "demo:build"
"buildTarget": "demo:build"
}
},
"test": {
Expand All @@ -123,10 +122,9 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": ["src/demo/tsconfig.app.json", "src/demo/tsconfig.spec.json"],
"exclude": ["**/node_modules/**"]
"lintFilePatterns": ["src/**/*.ts", "src/**/*.html"]
}
}
}
Expand Down
Loading

0 comments on commit 3ee085b

Please sign in to comment.