next-intl 3.1.4-alpha.1 → 3.1.4
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 +13 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-intl",
|
|
3
|
-
"version": "3.1.4
|
|
3
|
+
"version": "3.1.4",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"author": "Jan Amann <jan@amann.work>",
|
|
6
6
|
"description": "A minimal, but complete solution for internationalization in Next.js apps.",
|
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/amannn/next-intl"
|
|
12
12
|
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "rm -rf dist && rollup -c",
|
|
15
|
+
"test": "TZ=Europe/Berlin vitest",
|
|
16
|
+
"lint": "eslint src test && tsc --noEmit",
|
|
17
|
+
"prepublishOnly": "CI=true turbo test && turbo lint && turbo build && cp ../../README.md .",
|
|
18
|
+
"postpublish": "git checkout . && rm ./README.md",
|
|
19
|
+
"size": "size-limit"
|
|
20
|
+
},
|
|
13
21
|
"main": "./dist/index.react-client.js",
|
|
14
22
|
"module": "./dist/esm/index.react-client.js",
|
|
15
23
|
"typings": "./dist/types/src/index.react-client.d.ts",
|
|
@@ -65,7 +73,7 @@
|
|
|
65
73
|
"dependencies": {
|
|
66
74
|
"@formatjs/intl-localematcher": "^0.2.32",
|
|
67
75
|
"negotiator": "^0.6.3",
|
|
68
|
-
"use-intl": "^3.1.
|
|
76
|
+
"use-intl": "^3.1.4"
|
|
69
77
|
},
|
|
70
78
|
"peerDependencies": {
|
|
71
79
|
"next": "^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0 || ^14.0.0",
|
|
@@ -114,13 +122,8 @@
|
|
|
114
122
|
},
|
|
115
123
|
{
|
|
116
124
|
"path": "dist/production/middleware.js",
|
|
117
|
-
"limit": "5.
|
|
125
|
+
"limit": "5.72 KB"
|
|
118
126
|
}
|
|
119
127
|
],
|
|
120
|
-
"
|
|
121
|
-
|
|
122
|
-
"test": "TZ=Europe/Berlin vitest",
|
|
123
|
-
"lint": "eslint src test && tsc --noEmit",
|
|
124
|
-
"size": "size-limit"
|
|
125
|
-
}
|
|
126
|
-
}
|
|
128
|
+
"gitHead": "ae5c0347f70e19ee61fe94b0828655936759df6f"
|
|
129
|
+
}
|