@pinegrow/nuxt-module 3.0.0-beta.2 → 3.0.0-beta.4
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.d.ts +1 -8
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -8
- package/dist/types.d.ts +1 -1
- package/package.json +3 -2
package/dist/module.d.ts
CHANGED
|
@@ -2,15 +2,8 @@ import * as _nuxt_schema from '@nuxt/schema';
|
|
|
2
2
|
|
|
3
3
|
interface ModuleOptions {
|
|
4
4
|
liveDesigner?: {
|
|
5
|
-
|
|
6
|
-
plugins?: string[];
|
|
5
|
+
repoRoot?: string;
|
|
7
6
|
usingStandaloneVueDevtools?: boolean;
|
|
8
|
-
routerHistoryMode?: string;
|
|
9
|
-
iconsets?: string[];
|
|
10
|
-
customDependencies?: {
|
|
11
|
-
dependencies?: {};
|
|
12
|
-
devDependencies?: {};
|
|
13
|
-
};
|
|
14
7
|
customTypes?: {
|
|
15
8
|
default?: {};
|
|
16
9
|
};
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -10,15 +10,8 @@ const module = defineNuxtModule({
|
|
|
10
10
|
},
|
|
11
11
|
defaults: {
|
|
12
12
|
liveDesigner: {
|
|
13
|
-
|
|
14
|
-
plugins: [],
|
|
13
|
+
repoRoot: "./",
|
|
15
14
|
usingStandaloneVueDevtools: false,
|
|
16
|
-
routerHistoryMode: "html5",
|
|
17
|
-
iconsets: [],
|
|
18
|
-
customDependencies: {
|
|
19
|
-
dependencies: {},
|
|
20
|
-
devDependencies: {}
|
|
21
|
-
},
|
|
22
15
|
customTypes: {
|
|
23
16
|
default: {}
|
|
24
17
|
}
|
package/dist/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pinegrow/nuxt-module",
|
|
3
|
-
"version": "3.0.0-beta.
|
|
3
|
+
"version": "3.0.0-beta.4",
|
|
4
4
|
"description": "Pinegrow Nuxt Module",
|
|
5
5
|
"author": "Pinegrow (http://pinegrow.com/)",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
"nuxt module"
|
|
23
23
|
],
|
|
24
24
|
"scripts": {
|
|
25
|
-
"build": "
|
|
25
|
+
"build": "npm run dev:prepare && npm run build:module",
|
|
26
|
+
"build:module": "nuxt-module-build",
|
|
26
27
|
"dev": "nuxi dev playground",
|
|
27
28
|
"dev:build": "nuxi build playground",
|
|
28
29
|
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
|