@verbaly/vite 0.13.0 → 0.13.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -13,13 +13,13 @@
13
13
 
14
14
  The Vite plugin for [Verbaly](https://github.com/AronSoto/verbaly). Write natural text in your code; on save it extracts stable keys, syncs per-locale JSON catalogs, generates typed `virtual:verbaly` + `verbaly.d.ts`, and **fails `vite build` when a translation is missing**.
15
15
 
16
- ## Install
16
+ ## 🚀 Install
17
17
 
18
- ```bash
18
+ ```
19
19
  pnpm add verbaly @verbaly/vite
20
20
  ```
21
21
 
22
- ```ts
22
+ ```
23
23
  // vite.config.ts
24
24
  import verbaly from '@verbaly/vite';
25
25
 
@@ -28,7 +28,7 @@ export default {
28
28
  };
29
29
  ```
30
30
 
31
- ```ts
31
+ ```
32
32
  // anywhere in your app — extracted + typed on save
33
33
  import { t, setLocale } from 'virtual:verbaly';
34
34
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verbaly/vite",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "description": "Zero-config Vite plugin for Verbaly — extraction, codegen and HMR.",
5
5
  "keywords": [
6
6
  "i18n",
@@ -38,15 +38,15 @@
38
38
  "access": "public"
39
39
  },
40
40
  "dependencies": {
41
- "@verbaly/compiler": "0.13.0"
41
+ "@verbaly/compiler": "0.13.1"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "vite": "^7.0.0 || ^8.0.0",
45
- "verbaly": "^0.13.0"
45
+ "verbaly": "^0.13.1"
46
46
  },
47
47
  "devDependencies": {
48
48
  "vite": "^8.1.3",
49
- "verbaly": "0.13.0"
49
+ "verbaly": "0.13.1"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsdown",