@desource/phone-mask-nuxt 1.1.1 → 1.1.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.
- package/CHANGELOG.md +11 -0
- package/dist/module.json +1 -1
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @desource/phone-mask-nuxt
|
|
2
2
|
|
|
3
|
+
## 1.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Vue/React/Svelte Upgrades:
|
|
8
|
+
- Reduced package bundle size (optimized build output)
|
|
9
|
+
- No API changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies []:
|
|
12
|
+
- @desource/phone-mask-vue@1.1.2
|
|
13
|
+
|
|
3
14
|
## 1.1.1
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@desource/phone-mask-nuxt",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"description": "🎯 Zero-config Nuxt module for international phone masking. Powered by @desource/phone-mask with Google libphonenumber sync.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -54,18 +54,20 @@
|
|
|
54
54
|
"vue": "^3.4.33"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@desource/phone-mask-vue": "1.1.
|
|
57
|
+
"@desource/phone-mask-vue": "1.1.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@nuxt/kit": "^4.4.2",
|
|
61
61
|
"@nuxt/module-builder": "^1.0.2",
|
|
62
62
|
"@nuxt/test-utils": "^4.0.0",
|
|
63
63
|
"nuxt": "^4.4.2",
|
|
64
|
+
"vite": "7.3.1",
|
|
64
65
|
"vue": "^3.5.30"
|
|
65
66
|
},
|
|
66
67
|
"scripts": {
|
|
67
68
|
"dev:prepare": "nuxt prepare",
|
|
68
69
|
"clean": "rimraf dist .nuxt coverage",
|
|
70
|
+
"clean:modules": "rimraf node_modules",
|
|
69
71
|
"build:internal": "pnpm dev:prepare && nuxt-module-build build",
|
|
70
72
|
"build": "pnpm clean && pnpm build:internal",
|
|
71
73
|
"test:unit": "vitest run --config vitest.unit.config.ts",
|