rimelight-components 2.0.89 → 2.0.90
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.json +1 -1
- package/dist/module.mjs +3 -3
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { addTemplate, defineNuxtModule, createResolver,
|
|
1
|
+
import { addTemplate, defineNuxtModule, createResolver, addComponentsDir, addImportsDir, addServerImportsDir } from '@nuxt/kit';
|
|
2
2
|
import { defu } from 'defu';
|
|
3
3
|
import { readdirSync } from 'node:fs';
|
|
4
4
|
import { basename } from 'node:path';
|
|
5
5
|
|
|
6
6
|
const name = "rimelight-components";
|
|
7
|
-
const version = "2.0.
|
|
7
|
+
const version = "2.0.90";
|
|
8
8
|
const homepage = "https://rimelight.com/tools/rimelight-components";
|
|
9
9
|
|
|
10
10
|
const defaultOptions = {
|
|
@@ -198,7 +198,6 @@ const module$1 = defineNuxtModule().with({
|
|
|
198
198
|
options
|
|
199
199
|
);
|
|
200
200
|
nuxt.options.build.transpile.push("@nuxt/ui");
|
|
201
|
-
installModule("@nuxt/ui");
|
|
202
201
|
addComponentsDir({
|
|
203
202
|
path: resolve("./runtime/components/"),
|
|
204
203
|
pathPrefix: false,
|
|
@@ -208,6 +207,7 @@ const module$1 = defineNuxtModule().with({
|
|
|
208
207
|
});
|
|
209
208
|
addImportsDir(resolve("./runtime/composables"));
|
|
210
209
|
addImportsDir(resolve("./runtime/utils"));
|
|
210
|
+
addServerImportsDir(resolve("./runtime/utils"));
|
|
211
211
|
const blockRendererFiles = readdirSync(
|
|
212
212
|
resolve("./runtime/components/blocks/renderer")
|
|
213
213
|
).filter((name2) => name2.endsWith(".vue"));
|