rimelight-components 2.0.78 → 2.0.79
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 +5 -5
- 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.0.
|
|
7
|
+
const version = "2.0.79";
|
|
8
8
|
const homepage = "https://rimelight.com/tools/rimelight-components";
|
|
9
9
|
|
|
10
10
|
const defaultOptions = {
|
|
@@ -197,7 +197,7 @@ const module$1 = defineNuxtModule().with({
|
|
|
197
197
|
return baseName.replace(/Renderer$/, "");
|
|
198
198
|
});
|
|
199
199
|
const blockRendererTemplate = addBlockMapTemplates(blockRendererNames);
|
|
200
|
-
nuxt.options.alias["#rimelight-internal/
|
|
200
|
+
nuxt.options.alias["#rimelight-internal/block-renderer-map"] = blockRendererTemplate.dst;
|
|
201
201
|
const blockEditorFiles = readdirSync(
|
|
202
202
|
resolve("./runtime/components/blocks/editor")
|
|
203
203
|
).filter((name2) => name2.endsWith(".vue"));
|
|
@@ -206,11 +206,11 @@ const module$1 = defineNuxtModule().with({
|
|
|
206
206
|
return baseName.replace(/Editor$/, "");
|
|
207
207
|
});
|
|
208
208
|
const blockEditorTemplate = addEditorBlockMapTemplates(blockEditorNames);
|
|
209
|
-
nuxt.options.alias["#rimelight-internal/
|
|
209
|
+
nuxt.options.alias["#rimelight-internal/block-editor-map"] = blockEditorTemplate.dst;
|
|
210
210
|
nuxt.hook("nitro:config", (nitroConfig) => {
|
|
211
211
|
nitroConfig.alias = nitroConfig.alias || {};
|
|
212
|
-
nitroConfig.alias["#rimelight-internal/
|
|
213
|
-
nitroConfig.alias["#rimelight-internal/
|
|
212
|
+
nitroConfig.alias["#rimelight-internal/block-renderer-map"] = blockRendererTemplate.dst;
|
|
213
|
+
nitroConfig.alias["#rimelight-internal/block-editor-map"] = blockEditorTemplate.dst;
|
|
214
214
|
});
|
|
215
215
|
}
|
|
216
216
|
});
|