angular-intlayer 5.5.10 → 5.5.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +16 -14
package/README.md CHANGED
@@ -106,7 +106,7 @@ By default, Intlayer scans for files with the extension `.content.{json,ts,tsx,j
106
106
 
107
107
  ### Declare your content
108
108
 
109
- `angular-intlayer` is made to work with the [`intlayer` package](https://github.com/aymericzip/intlayer/blob/main/docs/en/packages/intlayer/index.md).`intlayer` is a package that allows you to declare your content anywhere in your code. It converts multilingual content declarations into structured dictionaries that integrate seamlessly into your application.
109
+ `angular-intlayer` is made to work with the [`intlayer` package](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/packages/intlayer/index.md).`intlayer` is a package that allows you to declare your content anywhere in your code. It converts multilingual content declarations into structured dictionaries that integrate seamlessly into your application.
110
110
 
111
111
  Here’s an example of content declaration:
112
112
 
@@ -143,7 +143,7 @@ export default component1Content;
143
143
 
144
144
  Intlayer provides a lot of features to help you internationalize your Angular application.
145
145
 
146
- **To learn more about these features, refer to the [Angular Internationalization (i18n) with Intlayer and Vite and Angular](https://github.com/aymericzip/intlayer/blob/main/docs/en/intlayer_with_vite+react.md) guide for Vite and Angular Application, or the [Angular Internationalization (i18n) with Intlayer and Angular (CRA)](https://intlayer.org/doc/environment/create-react-app) guide for Angular Create App.**
146
+ **To learn more about these features, refer to the [Angular Internationalization (i18n) with Intlayer and Vite and Angular](https://github.com/aymericzip/intlayer/blob/main/docs/docs/en/intlayer_with_vite+react.md) guide for Vite and Angular Application, or the [Angular Internationalization (i18n) with Intlayer and Angular (CRA)](https://intlayer.org/doc/environment/create-react-app) guide for Angular Create App.**
147
147
 
148
148
  ## Functions provided by `angular-intlayer` package
149
149
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-intlayer",
3
- "version": "5.5.10",
3
+ "version": "5.5.11",
4
4
  "private": false,
5
5
  "description": "Easily internationalize i18n your Angular applications with type-safe multilingual content management.",
6
6
  "keywords": [
@@ -64,12 +64,12 @@
64
64
  "deepmerge": "^4.3.1",
65
65
  "js-cookie": "^3.0.5",
66
66
  "uuid": "^11.1.0",
67
- "@intlayer/chokidar": "5.5.10",
68
- "@intlayer/core": "5.5.10",
69
- "@intlayer/config": "5.5.10",
70
- "@intlayer/dictionaries-entry": "5.5.10",
71
- "@intlayer/webpack": "5.5.10",
72
- "@intlayer/editor": "5.5.10"
67
+ "@intlayer/config": "5.5.11",
68
+ "@intlayer/chokidar": "5.5.11",
69
+ "@intlayer/webpack": "5.5.11",
70
+ "@intlayer/editor": "5.5.11",
71
+ "@intlayer/dictionaries-entry": "5.5.11",
72
+ "@intlayer/core": "5.5.11"
73
73
  },
74
74
  "devDependencies": {
75
75
  "@types/node": "^22.15.30",
@@ -82,19 +82,20 @@
82
82
  "tsc-alias": "^1.8.16",
83
83
  "tsup": "^8.5.0",
84
84
  "typescript": "^5.8.3",
85
+ "vitest": "^3.2.2",
85
86
  "@utils/eslint-config": "1.0.4",
86
- "@utils/ts-config-types": "1.0.4",
87
87
  "@utils/ts-config": "1.0.4",
88
- "@utils/tsup-config": "1.0.4"
88
+ "@utils/tsup-config": "1.0.4",
89
+ "@utils/ts-config-types": "1.0.4"
89
90
  },
90
91
  "peerDependencies": {
91
92
  "@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
92
93
  "@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
93
94
  "rxjs": "^6.0.0 || ^7.0.0",
94
- "@intlayer/config": "5.5.10",
95
- "@intlayer/chokidar": "5.5.10",
96
- "@intlayer/dictionaries-entry": "5.5.10",
97
- "@intlayer/core": "5.5.10"
95
+ "@intlayer/chokidar": "5.5.11",
96
+ "@intlayer/core": "5.5.11",
97
+ "@intlayer/config": "5.5.11",
98
+ "@intlayer/dictionaries-entry": "5.5.11"
98
99
  },
99
100
  "engines": {
100
101
  "node": ">=14.18"
@@ -113,7 +114,8 @@
113
114
  "prettier": "prettier . --check",
114
115
  "prettier:fix": "prettier . --write",
115
116
  "reset": "pnpm clean & pnpm build",
116
- "test": "",
117
+ "test": "vitest run",
118
+ "test:watch": "vitest",
117
119
  "typecheck": "tsup --project ./tsconfig.json --noEmit"
118
120
  }
119
121
  }