use-intl 3.0.0 → 3.0.2

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 +0 -2
  2. package/package.json +10 -8
package/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  # 🌐 use-intl
2
2
 
3
- ![Gzipped size](https://badgen.net/bundlephobia/minzip/use-intl) ![Tree shaking supported](https://badgen.net/bundlephobia/tree-shaking/use-intl) [<img src="https://img.shields.io/npm/dw/use-intl.svg" />](https://www.npmjs.com/package/use-intl)
4
-
5
3
  > Internationalization for React that gets out of your way.
6
4
 
7
5
  ## Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "use-intl",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "sideEffects": false,
5
5
  "author": "Jan Amann <jan@amann.work>",
6
6
  "description": "Minimal, but complete solution for managing internationalization in React apps.",
@@ -10,6 +10,13 @@
10
10
  "type": "git",
11
11
  "url": "https://github.com/amannn/next-intl/tree/main/packages/use-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",
18
+ "size": "size-limit"
19
+ },
13
20
  "main": "./dist/index.js",
14
21
  "module": "dist/esm/index.js",
15
22
  "typings": "./dist/types/src/index.d.ts",
@@ -82,10 +89,5 @@
82
89
  "limit": "12.355 kB"
83
90
  }
84
91
  ],
85
- "scripts": {
86
- "build": "rm -rf dist && rollup -c",
87
- "test": "TZ=Europe/Berlin vitest",
88
- "lint": "eslint src test && tsc --noEmit",
89
- "size": "size-limit"
90
- }
91
- }
92
+ "gitHead": "a1b397dbab0dabee1c04b820848fab66b89df6e3"
93
+ }