nuxt-glorious 1.1.9-7 → 1.1.9-9

Sign up to get free protection for your applications and to get access to all the features.
package/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "glorious",
3
3
  "configKey": "glorious",
4
- "version": "1.1.9-7"
4
+ "version": "1.1.9-9"
5
5
  }
package/dist/module.mjs CHANGED
@@ -57,7 +57,6 @@ const module = defineNuxtModule({
57
57
  });
58
58
  await installModule("@pinia/nuxt");
59
59
  addImportsDir(resolver.resolve("runtime/composables"));
60
- addImportsDir(resolver.resolve("runtime/utils"));
61
60
  addImportsDir(resolver.resolve("runtime/stores"));
62
61
  addImportsDir(resolver.resolve("runtime/middlewares"));
63
62
  addComponentsDir({
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.9-7",
2
+ "version": "1.1.9-9",
3
3
  "name": "nuxt-glorious",
4
4
  "description": "This package provides many things needed by a project, including server requests and authentication, SEO and other requirements of a project.",
5
5
  "repository": "sajadhzj/nuxt-glorious",
@@ -1 +0,0 @@
1
- export default function tailwindColor(name: string, range: number): any;
@@ -1,5 +0,0 @@
1
- import colors from "tailwindcss/colors";
2
- export default function tailwindColor(name, range) {
3
- const tailwindColor2 = colors;
4
- return tailwindColor2[name][range];
5
- }