@digitaldefiance/i18n-lib 2.1.25 → 2.1.30

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 +4 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -500,6 +500,10 @@ Contributions welcome! Please:
500
500
 
501
501
  ## ChangeLog
502
502
 
503
+ ### Version 2.1.30
504
+
505
+ - Version alignment bump
506
+
503
507
  ### Version 2.1.25
504
508
 
505
509
  - Improve test coverage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digitaldefiance/i18n-lib",
3
- "version": "2.1.25",
3
+ "version": "2.1.30",
4
4
  "description": "i18n library with enum translation support",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -11,6 +11,7 @@
11
11
  "test": "npx nx test digitaldefiance-i18n-lib",
12
12
  "test:stream": "npx nx test --outputStyle=stream digitaldefiance-i18n-lib",
13
13
  "test:logged": "npx nx test --skip-nx-cache --outputStyle=stream digitaldefiance-i18n-lib 2>&1 | ansifilter -o test.log",
14
+ "test:coverage": "npx jest --coverage --testPathPattern=digitaldefiance-i18n-lib --coverageReporters=text",
14
15
  "lint": "npx nx lint digitaldefiance-i18n-lib",
15
16
  "lint:fix": "npx nx lint digitaldefiance-i18n-lib --fix",
16
17
  "prettier:check": "prettier --check 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}'",