next-intl 3.4.0 → 3.4.1
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 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-intl",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"author": "Jan Amann <jan@amann.work>",
|
|
6
6
|
"funding": [
|
|
@@ -19,7 +19,9 @@
|
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "rm -rf dist && rollup -c",
|
|
21
21
|
"test": "TZ=Europe/Berlin vitest",
|
|
22
|
-
"lint": "
|
|
22
|
+
"lint": "pnpm run lint:source && pnpm run lint:package",
|
|
23
|
+
"lint:source": "eslint src test && tsc --noEmit",
|
|
24
|
+
"lint:package": "publint && attw --pack",
|
|
23
25
|
"prepublishOnly": "CI=true turbo test && turbo lint && turbo build && cp ../../README.md .",
|
|
24
26
|
"postpublish": "git checkout . && rm ./README.md",
|
|
25
27
|
"size": "size-limit"
|
|
@@ -80,13 +82,14 @@
|
|
|
80
82
|
"dependencies": {
|
|
81
83
|
"@formatjs/intl-localematcher": "^0.2.32",
|
|
82
84
|
"negotiator": "^0.6.3",
|
|
83
|
-
"use-intl": "^3.4.
|
|
85
|
+
"use-intl": "^3.4.1"
|
|
84
86
|
},
|
|
85
87
|
"peerDependencies": {
|
|
86
88
|
"next": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
|
|
87
89
|
"react": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
88
90
|
},
|
|
89
91
|
"devDependencies": {
|
|
92
|
+
"@arethetypeswrong/cli": "^0.13.5",
|
|
90
93
|
"@edge-runtime/vm": "^3.1.3",
|
|
91
94
|
"@size-limit/preset-big-lib": "^8.2.6",
|
|
92
95
|
"@testing-library/react": "^13.0.0",
|
|
@@ -99,6 +102,7 @@
|
|
|
99
102
|
"eslint-plugin-deprecation": "^1.4.1",
|
|
100
103
|
"next": "^14.0.4",
|
|
101
104
|
"path-to-regexp": "^6.2.1",
|
|
105
|
+
"publint": "^0.2.7",
|
|
102
106
|
"react": "^18.2.0",
|
|
103
107
|
"react-dom": "^18.2.0",
|
|
104
108
|
"rollup": "^3.28.1",
|
|
@@ -137,5 +141,5 @@
|
|
|
137
141
|
"limit": "5.8 KB"
|
|
138
142
|
}
|
|
139
143
|
],
|
|
140
|
-
"gitHead": "
|
|
144
|
+
"gitHead": "e90eda6d85867f87d941ebba10d0bcf6170c5e81"
|
|
141
145
|
}
|