@pinegrow/nuxt-module 1.0.0-alpha.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/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Nuxt Module
2
+
3
+ ## Development
4
+
5
+ - Run `npm run dev:prepare` to generate type stubs.
6
+ - Use `npm run dev` to start [playground](./playground) in development mode.
@@ -0,0 +1,5 @@
1
+ module.exports = function(...args) {
2
+ return import('./module.mjs').then(m => m.default.call(this, ...args))
3
+ }
4
+ const _meta = module.exports.meta = require('./module.json')
5
+ module.exports.getMeta = () => Promise.resolve(_meta)
@@ -0,0 +1,21 @@
1
+ import * as _nuxt_schema from '@nuxt/schema';
2
+
3
+ interface ModuleOptions {
4
+ liveDesigner: {
5
+ projectBase: string;
6
+ plugins: string[];
7
+ usingStandaloneVueDevtools: boolean;
8
+ routerHistoryMode: string;
9
+ iconsets: string[];
10
+ customDependencies: {
11
+ dependencies: {};
12
+ devDependencies: {};
13
+ };
14
+ customTypes: {
15
+ default: {};
16
+ };
17
+ };
18
+ }
19
+ declare const _default: _nuxt_schema.NuxtModule<ModuleOptions>;
20
+
21
+ export { ModuleOptions, _default as default };