@valbuild/core 0.41.0 → 0.42.0

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.
@@ -1,5 +1,5 @@
1
1
  export { initVal } from "./initVal.js";
2
- export type { InitVal, ValConfig } from "./initVal.js";
2
+ export type { InitVal, ValConfig, ValConstructor } from "./initVal.js";
3
3
  export { Schema, type SerializedSchema } from "./schema/index.js";
4
4
  export type { ImageMetadata } from "./schema/image.js";
5
5
  export type { LinkSource } from "./source/link.js";
@@ -4,7 +4,7 @@ import { getValPath as getPath } from "./val/index.js";
4
4
  import { file } from "./source/file.js";
5
5
  import { richtext } from "./source/richtext.js";
6
6
  import { link } from "./source/link.js";
7
- type ValConstructor = {
7
+ export type ValConstructor = {
8
8
  content: typeof content;
9
9
  getPath: typeof getPath;
10
10
  file: typeof file;
@@ -22,4 +22,3 @@ export type InitVal = {
22
22
  config: ValConfig;
23
23
  };
24
24
  export declare const initVal: () => InitVal;
25
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@valbuild/core",
3
- "version": "0.41.0",
3
+ "version": "0.42.0",
4
4
  "private": false,
5
5
  "description": "Val - supercharged hard-coded content",
6
6
  "scripts": {