@verbaly/unplugin 0.14.5 → 0.16.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 +4 -4
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -15,11 +15,11 @@
15
15
 
16
16
  ## 🚀 Install
17
17
 
18
- ```
18
+ ```bash
19
19
  pnpm add verbaly @verbaly/unplugin
20
20
  ```
21
21
 
22
- ```
22
+ ```js
23
23
  // webpack.config.mjs
24
24
  import { verbaly } from '@verbaly/unplugin';
25
25
 
@@ -28,7 +28,7 @@ export default {
28
28
  };
29
29
  ```
30
30
 
31
- ```
31
+ ```js
32
32
  // rollup.config.mjs
33
33
  import { verbaly } from '@verbaly/unplugin';
34
34
  export default { plugins: [verbaly.rollup({ locales: ['en', 'es'] })] };
@@ -41,7 +41,7 @@ verbaly.rspack({ locales: ['en', 'es'] });
41
41
 
42
42
  Extraction runs via the CLI — add it to your dev loop or CI:
43
43
 
44
- ```
44
+ ```bash
45
45
  npx verbaly extract # scan sources, sync catalogs, write verbaly.d.ts
46
46
  ```
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verbaly/unplugin",
3
- "version": "0.14.5",
3
+ "version": "0.16.0",
4
4
  "description": "Verbaly for webpack, Rollup, esbuild and Rspack — extraction, virtual modules and build gate via unplugin.",
5
5
  "keywords": [
6
6
  "i18n",
@@ -43,13 +43,13 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "unplugin": "^3.3.0",
46
- "@verbaly/compiler": "0.14.5"
46
+ "@verbaly/compiler": "0.16.0"
47
47
  },
48
48
  "peerDependencies": {
49
- "verbaly": "^0.14.5"
49
+ "verbaly": "^0.16.0"
50
50
  },
51
51
  "devDependencies": {
52
- "verbaly": "0.14.5"
52
+ "verbaly": "0.16.0"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "tsdown",