notform-nuxt 2.0.0-beta.1 → 2.0.0-beta.3
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 -15
- package/package.json +2 -2
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineNuxtModule, createResolver, addComponent, addImports
|
|
1
|
+
import { defineNuxtModule, createResolver, addComponent, addImports } from '@nuxt/kit';
|
|
2
2
|
|
|
3
3
|
const components = [
|
|
4
4
|
"NotForm",
|
|
@@ -41,20 +41,6 @@ const module$1 = defineNuxtModule({
|
|
|
41
41
|
from: composablesRuntime
|
|
42
42
|
});
|
|
43
43
|
});
|
|
44
|
-
const template = addTemplate({
|
|
45
|
-
filename: "notform.mjs",
|
|
46
|
-
getContents: () => "export * from 'notform'",
|
|
47
|
-
write: true
|
|
48
|
-
});
|
|
49
|
-
nuxt.options.alias["#notform"] = template.dst;
|
|
50
|
-
addTypeTemplate({
|
|
51
|
-
filename: "types/notform.d.ts",
|
|
52
|
-
getContents: () => `
|
|
53
|
-
declare module '#notform' {
|
|
54
|
-
export type * from 'notform'
|
|
55
|
-
}
|
|
56
|
-
`
|
|
57
|
-
});
|
|
58
44
|
}
|
|
59
45
|
});
|
|
60
46
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "notform-nuxt",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@nuxt/kit": "^4.4.2",
|
|
39
|
-
"notform": "2.0.0-beta.
|
|
39
|
+
"notform": "2.0.0-beta.2"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@nuxt/module-builder": "^1.0.2",
|