flightdeck 0.2.35 → 0.2.36

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.
Files changed (2) hide show
  1. package/dist/lib.d.ts +2 -5
  2. package/package.json +13 -13
package/dist/lib.d.ts CHANGED
@@ -783,7 +783,8 @@ declare const lnavFormatSchema: z$1.ZodObject<{
783
783
  "file-type"?: "json" | "text" | "csv" | undefined;
784
784
  "max-unrecognized-lines"?: number | undefined;
785
785
  }>;
786
- type LnavFormat = z$1.infer<typeof lnavFormatSchema>; //#endregion
786
+ type LnavFormat = z$1.infer<typeof lnavFormatSchema>;
787
+ //#endregion
787
788
  //#region src/flightdeck.lib.d.ts
788
789
  declare const FLIGHTDECK_SETUP_PHASES: readonly ["downloaded", "installed"];
789
790
  type FlightDeckSetupPhase = (typeof FLIGHTDECK_SETUP_PHASES)[number];
@@ -938,9 +939,6 @@ declare class FlightDeckLogger implements Pick<Console, `error` | `info` | `warn
938
939
  warn(...messages: unknown[]): void;
939
940
  error(...messages: unknown[]): void;
940
941
  }
941
-
942
- //#endregion
943
- //#region src/klaxon.lib.d.ts
944
942
  declare namespace klaxon_lib_d_exports {
945
943
  export { AlertOptions, ChangesetsPublishResult, ChangesetsPublishedPackage, PackageConfig, ScrambleOptions, ScrambleResult, SecretsConfig, alert, scramble };
946
944
  }
@@ -985,7 +983,6 @@ declare function scramble<K extends string = string>({
985
983
  secretsConfig,
986
984
  publishedPackages
987
985
  }: ScrambleOptions<K>): Promise<ScrambleResult<K>>;
988
-
989
986
  //#endregion
990
987
  export { FLIGHTDECK_ERROR, FLIGHTDECK_INFO, FLIGHTDECK_LNAV_FORMAT, FLIGHTDECK_SETUP_PHASES, FLIGHTDECK_UPDATE_PHASES, FLIGHTDECK_WARN, FlightDeck, FlightDeckFormat, FlightDeckLog, FlightDeckLogger, FlightDeckOptions, FlightDeckSetupPhase, FlightDeckUpdatePhase, klaxon_lib_d_exports as Klaxon, LnavFormatBreakdown, LnavFormatValueDefinition, LnavFormatVisualComponent, MemberOf, flightDeckLogSchema, isVersionNumber };
991
988
  //# sourceMappingURL=lib.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flightdeck",
3
- "version": "0.2.35",
3
+ "version": "0.2.36",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "Jeremy Banka",
@@ -27,27 +27,27 @@
27
27
  "klaxon": "./bin/klaxon.bin.js"
28
28
  },
29
29
  "dependencies": {
30
- "@t3-oss/env-core": "0.13.4",
31
- "cron": "4.3.0",
32
- "zod": "3.25.7",
33
- "atom.io": "0.33.4",
30
+ "@t3-oss/env-core": "0.13.8",
31
+ "cron": "4.3.1",
32
+ "zod": "3.25.64",
33
+ "atom.io": "0.33.5",
34
34
  "comline": "0.3.0",
35
35
  "safedeposit": "0.1.1"
36
36
  },
37
37
  "devDependencies": {
38
- "@types/bun": "npm:bun-types@1.2.13",
38
+ "@types/bun": "npm:bun-types@1.2.16",
39
39
  "@biomejs/js-api": "0.7.1",
40
40
  "@biomejs/wasm-nodejs": "1.9.4",
41
- "@types/node": "22.15.19",
41
+ "@types/node": "24.0.1",
42
42
  "@types/tmp": "0.2.6",
43
43
  "concurrently": "9.1.2",
44
- "eslint": "9.27.0",
44
+ "eslint": "9.29.0",
45
45
  "json-schema-to-zod": "2.6.1",
46
46
  "rimraf": "6.0.1",
47
47
  "tmp": "0.2.3",
48
- "tsdown": "0.11.12",
49
- "vitest": "3.1.4",
50
- "varmint": "0.5.1"
48
+ "tsdown": "0.12.7",
49
+ "vitest": "3.2.3",
50
+ "varmint": "0.5.2"
51
51
  },
52
52
  "scripts": {
53
53
  "gen": "bun ./__scripts__/gen.bun.ts",
@@ -55,8 +55,8 @@
55
55
  "schema:flightdeck": "bun ./src/flightdeck.bin.ts --outdir=dist -- schema",
56
56
  "lint:biome": "biome check -- .",
57
57
  "lint:eslint": "eslint -- .",
58
- "lint:types": "tsc --noEmit",
59
- "watch:types": "tsc --watch --noEmit",
58
+ "lint:types": "tsgo --noEmit",
59
+ "watch:types": "tsgo --watch --noEmit",
60
60
  "lint": "concurrently \"bun:lint:*\"",
61
61
  "test": "vitest",
62
62
  "test:once": "vitest run",