nuxt-glorious 1.1.9-6 → 1.1.9-8

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-6"
4
+ "version": "1.1.9-8"
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,10 +1,11 @@
1
1
  {
2
- "version": "1.1.9-6",
2
+ "version": "1.1.9-8",
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",
6
6
  "author": "sajad hossein zadeh (https://github.com/sajadhzj)",
7
7
  "license": "MIT",
8
+ "type": "module",
8
9
  "exports": {
9
10
  ".": {
10
11
  "types": "./dist/types.d.ts",
@@ -1 +0,0 @@
1
- export default function tailwindColor(name: string, range: number): any;
@@ -1,6 +0,0 @@
1
- import colors from "tailwindcss/colors";
2
- export default function tailwindColor(name, range) {
3
- const tailwindColor2 = colors;
4
- console.log(colors);
5
- return tailwindColor2[name][range];
6
- }