resources-tsk
Advanced tools
Comparing version 1.1.2 to 1.1.3
@@ -30,4 +30,8 @@ # Changelog | ||
## [1.1.1] — 2020-08-17 | ||
## [1.1.2] — 2020-08-17 | ||
### Updated | ||
- Change strategy to manage runkit example file. | ||
## [1.1.3] — 2020-08-23 | ||
### Updated | ||
- Package json keywords. |
{ | ||
"name": "resources-tsk", | ||
"version": "1.1.2", | ||
"description": "tool for use with or without NodeTskeleton template project", | ||
"version": "1.1.3", | ||
"description": "resource tool for use with or without NodeTskeleton template project", | ||
"repository": { | ||
@@ -11,3 +11,6 @@ "type": "git", | ||
"resources", | ||
"locals", | ||
"tskeleton", | ||
"flow", | ||
"control", | ||
"tool" | ||
@@ -32,3 +35,3 @@ ], | ||
"devDependencies": { | ||
"@types/node": "^14.0.27", | ||
"@types/node": "^14.6.0", | ||
"typescript": "^3.9.7" | ||
@@ -35,0 +38,0 @@ }, |
@@ -9,5 +9,5 @@ # Resources tool 🧰 | ||
## Resources | ||
## Using Resources | ||
It is a basic `internationalization` tool that will allow you to manage and administer the local messages of your application, even with enriched messages, for example: | ||
`Resources` is a basic `internationalization` tool that will allow you to manage and administer the local messages of your application, even with enriched messages, for example: | ||
@@ -23,4 +23,4 @@ ## Using Resources | ||
"SOMETHING_WENT_WRONG": "Oh sorry, something went wrong with current action!", | ||
"SOME_PARAMETERS_ARE_MISSING": "Some parameters are missing: {{missingParams}}.", | ||
"YOUR_OWN_NEED": "You are the user {{name}}, your last name is {{lastName}} and you are {{age}} years old." | ||
"SOME_PARAMETERS_ARE_MISSING": "Some parameters are missing: {{missingParams}}.", | ||
"YOUR_OWN_NEED": "You are the user {{name}}, your last name is {{lastName}} and you are {{age}} years old." | ||
} | ||
@@ -31,4 +31,4 @@ // ./locals/resources/es.local.json | ||
"SOMETHING_WENT_WRONG": "Oh lo sentimos, algo salió mal con esta acción!", | ||
"SOME_PARAMETERS_ARE_MISSING": "Faltan algunos parámetros: {{missingParams}}.", | ||
"YOUR_OWN_NEED": "Usted es {{name}}, su apellido es {{lastName}} y su edad es {{age}} años." | ||
"SOME_PARAMETERS_ARE_MISSING": "Faltan algunos parámetros: {{missingParams}}.", | ||
"YOUR_OWN_NEED": "Usted es {{name}}, su apellido es {{lastName}} y su edad es {{age}} años." | ||
} | ||
@@ -48,4 +48,4 @@ /* others as you needed */ | ||
"SOMETHING_WENT_WRONG": "SOMETHING_WENT_WRONG", | ||
"SOME_PARAMETERS_ARE_MISSING": "SOME_PARAMETERS_ARE_MISSING", | ||
"YOUR_OWN_NEED": "YOUR_OWN_NEED" | ||
"SOME_PARAMETERS_ARE_MISSING": "SOME_PARAMETERS_ARE_MISSING", | ||
"YOUR_OWN_NEED": "YOUR_OWN_NEED" | ||
} | ||
@@ -65,3 +65,3 @@ ``` | ||
const locals = { | ||
es: esLocal, | ||
es: esLocal, | ||
en: enLocal, | ||
@@ -68,0 +68,0 @@ /* others as you needed */ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13876