Skip to content

Commit

Permalink
Angular 16 upgrade (#1237)
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysVuika authored Jul 22, 2024
1 parent 8972701 commit e9b6982
Show file tree
Hide file tree
Showing 5 changed files with 8,626 additions and 6,427 deletions.
20 changes: 15 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
{
"root": true,
"ignorePatterns": ["projects/**/*"],
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": ["*.ts"],
"files": [
"*.ts"
],
"parserOptions": {
"project": ["tsconfig.json"],
"project": [
"tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
Expand All @@ -32,8 +38,12 @@
}
},
{
"files": ["*.html"],
"extends": ["plugin:@angular-eslint/template/recommended"],
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ Lightweight (±3KB) translation library for Angular applications.
npm install @ngstack/translate
```

### Compatibility with Angular

| @ngstack/translate | Angular |
|--------------------|---------|
| 8.0.0 | 15 |
| 9.0.0 | 16 |

## Using with the application

Create `en.json` file in the `src/app/assets/i18n` folder of your application.
Expand Down
Loading

0 comments on commit e9b6982

Please sign in to comment.