@nuxtify/core 0.1.3 → 0.1.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.mts CHANGED
@@ -61,15 +61,15 @@ interface ModuleOptions {
61
61
  /**
62
62
  * Brand options
63
63
  */
64
- brand: BrandOptions;
64
+ brand?: BrandOptions;
65
65
  /**
66
66
  * Policies options
67
67
  */
68
- policies: PoliciesOptions;
68
+ policies?: PoliciesOptions;
69
69
  /**
70
70
  * Announcement banner options
71
71
  */
72
- announcement: {
72
+ announcement?: {
73
73
  show?: boolean;
74
74
  message?: string;
75
75
  buttonText?: string;
@@ -78,8 +78,8 @@ interface ModuleOptions {
78
78
  /**
79
79
  * Credits options
80
80
  */
81
- credits: {
82
- creator: {
81
+ credits?: {
82
+ creator?: {
83
83
  name?: string;
84
84
  domain?: string;
85
85
  };
@@ -90,7 +90,7 @@ interface ModuleOptions {
90
90
  /**
91
91
  * Email options
92
92
  */
93
- email: {
93
+ email?: {
94
94
  general?: string;
95
95
  support?: string;
96
96
  };
package/dist/module.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/core",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "configKey": "nuxtifyCore",
5
5
  "compatibility": {
6
6
  "nuxt": ">=3.16.0",
package/dist/module.mjs CHANGED
@@ -2,7 +2,7 @@ import { defineNuxtModule, createResolver, installModule, addComponentsDir, addI
2
2
  import { defu } from 'defu';
3
3
 
4
4
  const name = "@nuxtify/core";
5
- const version = "0.1.3";
5
+ const version = "0.1.4";
6
6
 
7
7
  const module = defineNuxtModule({
8
8
  meta: {
@@ -98,8 +98,8 @@ const module = defineNuxtModule({
98
98
  addImportsDir(resolver.resolve("./runtime/utils"));
99
99
  addServerImportsDir(resolver.resolve("./runtime/server/utils"));
100
100
  addRouteMiddleware({
101
- name: "setup-global",
102
- path: resolver.resolve("./runtime/middleware/setup.global.ts"),
101
+ name: "setup",
102
+ path: resolver.resolve("./runtime/middleware/setup.ts"),
103
103
  global: true
104
104
  });
105
105
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuxtify/core",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Nuxtify core module powered by Nuxt and Vuetify.",
5
5
  "homepage": "https://nuxtify.dev",
6
6
  "author": "Nuxtify.dev <hello@nuxtify.dev>",