@novx/i18n 0.2.3 → 0.3.0
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.
- package/README.md +5 -12
- package/index.d.ts +1 -0
- package/index.esm.js +3465 -0
- package/index.esm.js.map +1 -0
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -1,16 +1,9 @@
|
|
|
1
|
-
#
|
|
1
|
+
# I18N
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
- a dependency injection solution
|
|
5
|
-
- an integrated aop solution
|
|
6
|
-
- handling of configuration values
|
|
7
|
-
- error handling
|
|
8
|
-
- tracing
|
|
3
|
+
## Introduction
|
|
9
4
|
|
|
10
|
-
|
|
5
|
+
The `i18n` library implements a titny i18n solution.
|
|
11
6
|
|
|
12
|
-
|
|
7
|
+
## API Docs
|
|
13
8
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
Run `nx test i18n` to execute the unit tests via [Jest](https://jestjs.io).
|
|
9
|
+
- http://ernstandreas.de/novx/
|
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./src/index";
|