Skip to content

Commit

Permalink
chore(node): min version node
Browse files Browse the repository at this point in the history
  • Loading branch information
bartholomej committed Jun 7, 2024
1 parent 0a69d9c commit f9118bd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@
"dist"
],
"engines": {
"node": ">=18.13.0"
"node": ">=20.11.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}
}
23 changes: 12 additions & 11 deletions projects/ngx-translate-cut/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

> Angular pipe for cutting translations ✂️ 🌍 (plugin for [@ngx-translate](https://github.com/ngx-translate/core))
> _Angular 17, Ivy and Angular Universal (SSR) compatible_
> _Angular 18, Ivy, Angular Universal (SSR) and Zoneless compatible_
Here's the [demo](http://bartholomej.github.io/ngx-translate-cut/) or [stackblitz live preview](https://stackblitz.com/edit/ngx-translate-cut)

Expand All @@ -19,20 +19,21 @@ Here's the [demo](http://bartholomej.github.io/ngx-translate-cut/) or [stackblit
2. Use `npm` (or `yarn`) to install the package

```bash
npm install ngx-translate-cut # For Angular 17. See compatibility table
npm install ngx-translate-cut # For Angular 18. See compatibility table
```

Choose the version corresponding to your Angular version:

| Angular | ngx-translate-cut | Install |
| ------------------- | ----------------- | --------------------------------- |
| **ng17** | 17.x | `npm install ngx-translate-cut` |
| **ng16** | 5.x | `npm install ngx-translate-cut@5` |
| **ng15** | 4.x | `npm install ngx-translate-cut@4` |
| **ng14** | 3.x | `npm install ngx-translate-cut@3` |
| **ng13** | 3.x | `npm install ngx-translate-cut@3` |
| **ng12** (ivy only) | 2.x | `npm install ngx-translate-cut@2` |
| >= 5 =< 12 | 1.x | `npm install ngx-translate-cut@1` |
| Angular | ngx-translate-cut | Install |
| ------------------- | ----------------- | ---------------------------------- |
| **ng18** | 18.x | `npm install ngx-translate-cut` |
| **ng17** | 17.x | `npm install ngx-translate-cut@17` |
| **ng16** | 5.x | `npm install ngx-translate-cut@5` |
| **ng15** | 4.x | `npm install ngx-translate-cut@4` |
| **ng14** | 3.x | `npm install ngx-translate-cut@3` |
| **ng13** | 3.x | `npm install ngx-translate-cut@3` |
| **ng12** (ivy only) | 2.x | `npm install ngx-translate-cut@2` |
| >= 5 =< 12 | 1.x | `npm install ngx-translate-cut@1` |

3. Add `NgxTranslateCutModule` into your module `imports`.

Expand Down

0 comments on commit f9118bd

Please sign in to comment.