handlebars-i18n 1.8.2 → 1.8.3
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/package.json +8 -16
- package/readme.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "handlebars-i18n",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.3",
|
|
4
4
|
"description": "handlebars-i18n adds internationalization to handlebars.js using i18next and Intl.",
|
|
5
5
|
"main": "dist/handlebars-i18n.js",
|
|
6
6
|
"scripts": {
|
|
@@ -39,39 +39,31 @@
|
|
|
39
39
|
"license": "MIT",
|
|
40
40
|
"homepage": "https://github.com/aller-couleur/handlebars-i18n.git#readme",
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"handlebars": "^4.7.7",
|
|
43
|
-
"i18next": "^21.6.14",
|
|
44
42
|
"intl": "^1.2.5"
|
|
45
43
|
},
|
|
46
44
|
"devDependencies": {
|
|
47
45
|
"@commitlint/cli": "17.6.1",
|
|
48
46
|
"@commitlint/config-conventional": "16.2.1",
|
|
49
|
-
"@types/intl": "^1.2.
|
|
50
|
-
"@types/node": "^
|
|
51
|
-
"c8": "^10.1.
|
|
47
|
+
"@types/intl": "^1.2.2",
|
|
48
|
+
"@types/node": "^24.5.2",
|
|
49
|
+
"c8": "^10.1.3",
|
|
52
50
|
"chai": "4.3.6",
|
|
53
51
|
"coveralls-next": "^4.2.1",
|
|
54
52
|
"gulp": "5.0.0",
|
|
55
53
|
"gulp-rename": "2.0.0",
|
|
56
54
|
"gulp-uglify": "3.0.2",
|
|
57
55
|
"gulp-uglify-es": "3.0.0",
|
|
58
|
-
"html-entities": "^2.
|
|
59
|
-
"husky": "7.0.4",
|
|
56
|
+
"html-entities": "^2.6.0",
|
|
60
57
|
"mocha": "10.7.3",
|
|
61
58
|
"mocha-lcov-reporter": "^1.3.0",
|
|
62
59
|
"nyc": "15.1.0",
|
|
63
60
|
"typescript": "^4.9.5"
|
|
64
61
|
},
|
|
65
62
|
"dependencies": {
|
|
66
|
-
"handlebars": "^4.7.
|
|
67
|
-
"i18next": "^21.
|
|
63
|
+
"handlebars": "^4.7.8",
|
|
64
|
+
"i18next": "^21.10.0",
|
|
68
65
|
"intl": "^1.2.5",
|
|
69
|
-
"relative-time-format": "^1.1.
|
|
70
|
-
},
|
|
71
|
-
"husky": {
|
|
72
|
-
"hooks": {
|
|
73
|
-
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
74
|
-
}
|
|
66
|
+
"relative-time-format": "^1.1.11"
|
|
75
67
|
},
|
|
76
68
|
"scheduleVersion": "1.4.2"
|
|
77
69
|
}
|
package/readme.md
CHANGED
|
@@ -63,7 +63,7 @@ Usage in web browser (old school):
|
|
|
63
63
|
|
|
64
64
|
Via jsDelivr CDN:
|
|
65
65
|
```javascript
|
|
66
|
-
<script src="https://cdn.jsdelivr.net/npm/handlebars-i18n@1.8.
|
|
66
|
+
<script src="https://cdn.jsdelivr.net/npm/handlebars-i18n@1.8.3/dist/handlebars-i18n.min.js"></script>
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
## Quick example
|