@systemfsoftware/effect-schema-vite 1.4.0 → 1.5.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.
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { Plugin } from "vite";
2
- //#region src/vite-inline-schema-tests.d.ts
2
+ //#region src/mod.d.ts
3
3
  /** @since 0.1.0 */
4
4
  interface InlineSchemaTestsOptions {
5
5
  /** Directory to scan for schema files, relative to Vite root. Default: `"src"`. */
@@ -47,4 +47,4 @@ declare const generateSchemaLaws: (lawFilePath: string, srcDir: string) => strin
47
47
  */
48
48
  declare const inlineSchemaTests: (options?: InlineSchemaTestsOptions) => Plugin;
49
49
  //#endregion
50
- export { type InlineSchemaTestsOptions, LAW_FILE_BASENAME, generateSchemaLaws, inlineSchemaTests };
50
+ export { InlineSchemaTestsOptions, LAW_FILE_BASENAME, generateSchemaLaws, inlineSchemaTests };
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { readFileSync, readdirSync, statSync } from "node:fs";
2
2
  import { dirname, extname, join, relative, resolve } from "node:path";
3
3
  import { parseSync } from "oxc-parser";
4
- //#region src/vite-inline-schema-tests.ts
4
+ //#region src/mod.ts
5
5
  /**
6
6
  * The one test filename the placement taxonomy whitelists by name. The plugin
7
7
  * rewrites this file in the consumer's `src/`; nothing else is touched.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@systemfsoftware/effect-schema-vite",
3
3
  "license": "MIT",
4
- "version": "1.4.0",
4
+ "version": "1.5.0",
5
5
  "author": "Ryan Lee <drdgvhbh@gmail.com>",
6
6
  "repository": {
7
7
  "type": "git",
@@ -45,11 +45,12 @@
45
45
  "tsdown": "^0.22.9",
46
46
  "vite": "^7",
47
47
  "vitest": "^4",
48
- "@systemfsoftware/arethetypeswrong-cli": "^1.0.7",
48
+ "@systemfsoftware/effect-gherkin-spec": "^0.5.0",
49
+ "@systemfsoftware/arethetypeswrong-cli": "^1.1.0",
50
+ "@systemfsoftware/effect-schema-law": "^0.6.0",
51
+ "@systemfsoftware/tsconfig": "^1.2.6",
49
52
  "@systemfsoftware/oxlint-config": "^0.1.0",
50
- "@systemfsoftware/effect-schema-law": "^0.5.0",
51
- "@systemfsoftware/vitest-config": "^0.1.0",
52
- "@systemfsoftware/tsconfig": "^1.2.6"
53
+ "@systemfsoftware/vitest-config": "^0.1.0"
53
54
  },
54
55
  "peerDependencies": {
55
56
  "@systemfsoftware/effect-schema-law": "*",