handlebars-i18n 1.10.5 → 1.10.7

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.
@@ -6,7 +6,7 @@
6
6
  * handlebars-i18n adds features for localization/
7
7
  * internationalization to handlebars.js
8
8
  *
9
- * Copyright (c) 2020-25 Florian Walzel, MIT License
9
+ * Copyright (c) 2020-26 Florian Walzel, MIT License
10
10
  *
11
11
  *********************************************************************/
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "handlebars-i18n",
3
- "version": "1.10.5",
3
+ "version": "1.10.7",
4
4
  "description": "handlebars-i18n adds internationalization to handlebars.js using i18next and Intl.",
5
5
  "main": "dist/handlebars-i18n.js",
6
6
  "types": "dist/handlebars-i18n.d.ts",
@@ -43,11 +43,11 @@
43
43
  "intl": "^1.2.5"
44
44
  },
45
45
  "devDependencies": {
46
- "@commitlint/cli": "20.4.1",
47
- "@commitlint/config-conventional": "20.4.1",
46
+ "@commitlint/cli": "21.0.2",
47
+ "@commitlint/config-conventional": "21.0.2",
48
48
  "@types/intl": "^1.2.2",
49
- "@types/node": "^25.2.0",
50
- "c8": "^10.1.3",
49
+ "@types/node": "^25.9.2",
50
+ "c8": "^11.0.0",
51
51
  "chai": "^6.2.2",
52
52
  "coveralls-next": "^6.0.1",
53
53
  "glob": "^13.0.1",
@@ -56,14 +56,14 @@
56
56
  "gulp-uglify": "3.0.2",
57
57
  "gulp-uglify-es": "3.0.0",
58
58
  "html-entities": "^2.6.0",
59
- "mocha": "^11.3.0",
59
+ "mocha": "^8.1.3",
60
60
  "mocha-lcov-reporter": "^1.3.0",
61
- "nyc": "17.1.0",
62
- "typescript": "^5.9.3"
61
+ "nyc": "^18.0.0",
62
+ "typescript": "^6.0.3"
63
63
  },
64
64
  "dependencies": {
65
65
  "handlebars": "^4.7.8",
66
- "i18next": "^25.8.3",
66
+ "i18next": "^26.3.1",
67
67
  "intl": "^1.2.5",
68
68
  "relative-time-format": "^1.1.11"
69
69
  },
package/readme.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # handlebars-i18n
2
2
 
3
- `handlebars-i18n` adds the translation features of [i18next](https://www.i18next.com/)
3
+ *What it is about:* `handlebars-i18n` adds the translation features of [i18next](https://www.i18next.com/)
4
4
  to [handlebars.js](https://handlebarsjs.com/). It also provides **date**, **number**, and **currency formatting**
5
5
  via [Intl](https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Intl). Use as node module or in the web browser. `handlebars-i18n` is listed amongst i18next’s official [framework helpers](https://www.i18next.com/overview/supported-frameworks).
6
6
 
@@ -66,10 +66,10 @@ Usage in web browser (old school):
66
66
 
67
67
  Via CDN:
68
68
  ```javascript
69
- <script src="https://cdn.jsdelivr.net/npm/handlebars-i18n@1.10.1/dist/handlebars-i18n.min.js"></script>
69
+ <script src="https://cdn.jsdelivr.net/npm/handlebars-i18n@1.10.5/dist/handlebars-i18n.min.js"></script>
70
70
  ```
71
71
 
72
- [![What Was Design](https://florianwalzel.com/what-was-design-banner-2x.webp)](https://www.slanted.de/product/what-was-design/)
72
+ [![Florian Walzel: What was design? Declarations and definitions from a century of creative quest](https://florianwalzel.com/wwd-hero-c.webp)](https://www.slanted.de/product/what-was-design/)
73
73
 
74
74
  ## Quick Example
75
75