Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates",
"plugin:import/recommended"
"plugin:import-x/recommended"
],
"rules": {
"@angular-eslint/directive-selector": [
Expand All @@ -30,8 +30,8 @@
"style": "kebab-case"
}
],
"import/no-unresolved": "off",
"import/order": "error"
"import-x/no-unresolved": "off",
"import-x/order": "error"
}
},
{
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ typings/
.vscode
.nx
dist
out-tsc
junit.xml

# Go
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.16.0
v24.11.1
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.angular
coverage
dist
modules/testing/builder/projects
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ All notable changes to this project will be documented in this file. See [commit

## [20.0.0](https://github.com/kyubisation/angular-server-side-configuration/compare/v19.0.1...v20.0.0) (2025-06-10)


### ⚠ BREAKING CHANGES

* Upgrade to Angular 20 and removal of the experimental build and dev-server builders
- Upgrade to Angular 20 and removal of the experimental build and dev-server builders

### Features

* upgrade to Angular 20 ([#114](https://github.com/kyubisation/angular-server-side-configuration/issues/114)) ([8c6617e](https://github.com/kyubisation/angular-server-side-configuration/commit/8c6617ea594e2ac897e278313a42c92c952c5792))
- upgrade to Angular 20 ([#114](https://github.com/kyubisation/angular-server-side-configuration/issues/114)) ([8c6617e](https://github.com/kyubisation/angular-server-side-configuration/commit/8c6617ea594e2ac897e278313a42c92c952c5792))

## [19.0.1](https://github.com/kyubisation/angular-server-side-configuration/compare/v19.0.0...v19.0.1) (2024-11-27)

Expand Down
16 changes: 16 additions & 0 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,22 @@
],
"outputHashing": "all"
},
"i18n": {
"localize": true,
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
Expand Down
Loading
Loading