@regle/nuxt 0.2.13 → 0.3.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.
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/package.json +20 -20
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -23,7 +23,7 @@ const module = defineNuxtModule({
|
|
|
23
23
|
});
|
|
24
24
|
addImportsSources({
|
|
25
25
|
from: "@regle/rules",
|
|
26
|
-
imports: ["ruleHelpers", "withAsync", "withMessage", "withParams"]
|
|
26
|
+
imports: ["ruleHelpers", "withAsync", "withMessage", "withParams", "withTooltip"]
|
|
27
27
|
});
|
|
28
28
|
try {
|
|
29
29
|
const regleZod = require("@regle/zod");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@regle/nuxt",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Regle nuxt module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -19,34 +19,34 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@nuxt/kit": "^3.14.1592",
|
|
21
21
|
"@nuxt/schema": "^3.14.1592",
|
|
22
|
-
"@regle/
|
|
23
|
-
"@regle/
|
|
22
|
+
"@regle/rules": "0.3.0",
|
|
23
|
+
"@regle/core": "0.3.0"
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@regle/zod": "0.
|
|
26
|
+
"@regle/zod": "0.3.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@nuxt/devtools": "^1.6.
|
|
30
|
-
"@nuxt/eslint-config": "^0.7.
|
|
29
|
+
"@nuxt/devtools": "^1.6.3",
|
|
30
|
+
"@nuxt/eslint-config": "^0.7.2",
|
|
31
31
|
"@nuxt/module-builder": "^0.8.4",
|
|
32
32
|
"@nuxt/schema": "^3.14.1592",
|
|
33
|
-
"@nuxt/test-utils": "^3.
|
|
33
|
+
"@nuxt/test-utils": "^3.15.1",
|
|
34
34
|
"@types/node": "^22.9.3",
|
|
35
35
|
"c12": "2.0.1",
|
|
36
36
|
"changelogen": "^0.5.7",
|
|
37
|
-
"nuxt": "^3.14.1592",
|
|
38
|
-
"type-fest": "4.28.0",
|
|
39
|
-
"vitest": "2.1.5",
|
|
40
37
|
"eslint": "9.15.0",
|
|
41
38
|
"eslint-config-prettier": "9.1.0",
|
|
42
39
|
"eslint-plugin-vue": "9.31.0",
|
|
40
|
+
"nuxt": "^3.14.1592",
|
|
43
41
|
"prettier": "3.3.3",
|
|
44
42
|
"tsup": "8.3.5",
|
|
43
|
+
"type-fest": "4.30.0",
|
|
45
44
|
"typescript": "5.6.3",
|
|
46
|
-
"
|
|
45
|
+
"vitest": "2.1.8",
|
|
46
|
+
"vue": "3.5.13",
|
|
47
47
|
"vue-eslint-parser": "9.4.3",
|
|
48
48
|
"vue-tsc": "2.1.10",
|
|
49
|
-
"@regle/zod": "0.
|
|
49
|
+
"@regle/zod": "0.3.0"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|
|
@@ -61,16 +61,16 @@
|
|
|
61
61
|
"url": "git+https://github.com/victorgarciaesgi/regle.git"
|
|
62
62
|
},
|
|
63
63
|
"scripts": {
|
|
64
|
-
"dev": "
|
|
64
|
+
"dev": "echo 'no dev build'",
|
|
65
|
+
"dev:playground": "nuxi dev playground",
|
|
65
66
|
"dev:build": "nuxi build playground",
|
|
66
|
-
"typecheck": "nuxi typecheck",
|
|
67
|
-
"build": "
|
|
68
|
-
"build:sourcemaps": "
|
|
69
|
-
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
|
|
67
|
+
"typecheck": "nuxi typecheck playground",
|
|
68
|
+
"build": "pnpm run dev:prepare && nuxt-module-build build",
|
|
69
|
+
"build:sourcemaps": "pnpm run dev:prepare && nuxt-module-build build",
|
|
70
|
+
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground && nuxi prepare test/fixtures",
|
|
70
71
|
"release": "pnpm publish --report-summary",
|
|
71
72
|
"lint": "eslint .",
|
|
72
|
-
"test": "
|
|
73
|
-
"test:watch": "vitest watch"
|
|
74
|
-
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
|
|
73
|
+
"test": "vitest run",
|
|
74
|
+
"test:watch": "vitest watch"
|
|
75
75
|
}
|
|
76
76
|
}
|