rimelight-components 2.0.27 → 2.0.28
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.d.mts +1 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -2
- package/dist/runtime/types/index.d.ts +1 -0
- package/dist/runtime/types/index.js +1 -0
- package/dist/types.d.mts +2 -0
- package/package.json +1 -1
package/dist/module.d.mts
CHANGED
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.28";
|
|
8
8
|
const homepage = "https://rimelight.com/tools/rimelight-components";
|
|
9
9
|
|
|
10
10
|
const defaultOptions = {
|
|
@@ -168,7 +168,6 @@ const module = defineNuxtModule().with({
|
|
|
168
168
|
global: true
|
|
169
169
|
});
|
|
170
170
|
addImportsDir(resolve("./runtime/composables"));
|
|
171
|
-
addImportsDir(resolve("./runtime/types"));
|
|
172
171
|
addImportsDir(resolve("./runtime/utils"));
|
|
173
172
|
const blockFiles = readdirSync(
|
|
174
173
|
resolve("./runtime/components/blocks")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./blocks.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./blocks.js";
|
package/dist/types.d.mts
CHANGED