@verbaly/vite 0.14.0 → 0.15.0

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 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -15,11 +15,11 @@ The Vite plugin for [Verbaly](https://github.com/AronSoto/verbaly). Write natura
15
15
 
16
16
  ## 🚀 Install
17
17
 
18
- ```
18
+ ```bash
19
19
  pnpm add verbaly @verbaly/vite
20
20
  ```
21
21
 
22
- ```
22
+ ```ts
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
- ```
31
+ ```ts
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.14.0",
3
+ "version": "0.15.0",
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.14.0"
41
+ "@verbaly/compiler": "0.15.0"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "vite": "^7.0.0 || ^8.0.0",
45
- "verbaly": "^0.14.0"
45
+ "verbaly": "^0.15.0"
46
46
  },
47
47
  "devDependencies": {
48
48
  "vite": "^8.1.3",
49
- "verbaly": "0.14.0"
49
+ "verbaly": "0.15.0"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsdown",