rimelight-components 2.1.1 → 2.1.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/dist/module.json +1 -1
- package/dist/module.mjs +2 -2
- package/package.json +1 -1
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { readdirSync } from 'node:fs';
|
|
|
4
4
|
import { basename } from 'node:path';
|
|
5
5
|
|
|
6
6
|
const name = "rimelight-components";
|
|
7
|
-
const version = "2.1.
|
|
7
|
+
const version = "2.1.2";
|
|
8
8
|
const homepage = "https://rimelight.com/tools/rimelight-components";
|
|
9
9
|
|
|
10
10
|
const defaultOptions = {
|
|
@@ -194,10 +194,10 @@ const module$1 = defineNuxtModule().with({
|
|
|
194
194
|
prefix: options.prefix ?? void 0,
|
|
195
195
|
global: true
|
|
196
196
|
});
|
|
197
|
+
nuxt.options.alias["#rimelight"] = resolve("./runtime");
|
|
197
198
|
addImportsDir(resolve("./runtime/composables"));
|
|
198
199
|
addImportsDir(resolve("./runtime/types"));
|
|
199
200
|
addImportsDir(resolve("./runtime/utils"));
|
|
200
|
-
addServerImportsDir(resolve("./runtime/composables"));
|
|
201
201
|
addServerImportsDir(resolve("./runtime/types"));
|
|
202
202
|
addServerImportsDir(resolve("./runtime/utils"));
|
|
203
203
|
const blockRendererFiles = readdirSync(resolve("./runtime/components/blocks/renderer")).filter(
|