kotori 0.1.2 → 0.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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -33,12 +33,14 @@ t('intro', { name: 'John', time: '12-00' })
33
33
  - No JSON
34
34
  - No dependencies
35
35
  - No build step
36
- - 0.39kb gzipped
36
+ - 0.38kb gzipped
37
37
  - Modular and tree-shakeable
38
38
  - Language change in one page rerenders all pages
39
39
  - Translation keys are typed — no more string typos
40
40
  - Variables typed and inferred from string literals
41
41
 
42
+ Demo: <https://stackblitz.com/edit/vitejs-vite-nyxwmhre?file=src%2FApp.tsx>
43
+
42
44
  ## Installation
43
45
 
44
46
  ```bash
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kotori",
3
3
  "description": "Strongly-typed and composable internationalization library for React",
4
- "version": "0.1.2",
4
+ "version": "0.1.4",
5
5
  "scripts": {
6
6
  "setup": "rm -rf node_modules && npm i && git init && husky",
7
7
  "prepublishOnly": "npm i && npx tsc && npm run build",