Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to Angular 17 #185

Merged
merged 2 commits into from
Jan 11, 2024
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
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CHANGELOG.md
5 changes: 5 additions & 0 deletions .versionrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"noVerify": true,
"packageFiles": ["./projects/ngx-currency/package.json"],
"bumpFiles": ["./projects/ngx-currency/package.json"]
}
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"devkit",
"Fontana",
"Neri",
"offcanvas",
"packagr"
]
}
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
# Changelog

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [4.0.0](https://github.com/dintecom/ngx-currency/compare/v3.0.0...v4.0.0) (2023-07-14)


### ⚠ BREAKING CHANGES

* migration to standalone components
* more predictable directive and config names
feat: partial global config override allowed
refactor: stronger typing
refactor: using the standard Angular project structure

### Features

* migrate to Angular 15 ([bb46fbe](https://github.com/dintecom/ngx-currency/commit/bb46fbe1f3c91a4e4afe01febd875d7c2afc6274))
* migrate to Angular 16 ([3bbd51e](https://github.com/dintecom/ngx-currency/commit/3bbd51ed4849bb713f892fcf6b408aa0c4778ca9))


### Bug Fixes

* allow null for min and max ([5368031](https://github.com/dintecom/ngx-currency/commit/5368031069cc918d2e6c967d9ae00396edb1f6b3))
* swap actual and expected values in config tests ([745ee6a](https://github.com/dintecom/ngx-currency/commit/745ee6a9e34116a74ef6366ba477677ab97d8f38))

## [3.0.0](https://github.com/nbfontana/ngx-currency/compare/v2.5.3...v3.0.0) (2022-11-30)

Expand Down
15 changes: 6 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"builder": "@angular-devkit/build-angular:application",
"options": {
"outputPath": "dist/ngx-currency-demo",
"index": "src/index.html",
"main": "src/main.ts",
"browser": "src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "tsconfig.app.json",
"inlineStyleLanguage": "scss",
Expand All @@ -44,12 +44,9 @@
"outputHashing": "all"
},
"development": {
"buildOptimizer": false,
"optimization": false,
"vendorChunk": true,
"extractLicenses": false,
"sourceMap": true,
"namedChunks": true
"sourceMap": true
}
},
"defaultConfiguration": "production"
Expand All @@ -58,18 +55,18 @@
"builder": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"browserTarget": "ngx-currency-demo:build:production"
"buildTarget": "ngx-currency-demo:build:production"
},
"development": {
"browserTarget": "ngx-currency-demo:build:development"
"buildTarget": "ngx-currency-demo:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "ngx-currency-demo:build"
"buildTarget": "ngx-currency-demo:build"
}
},
"test": {
Expand Down
Loading