Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nktpro committed Mar 6, 2025
1 parent de9bbc9 commit 45b3caf
Show file tree
Hide file tree
Showing 8 changed files with 68 additions and 74 deletions.
13 changes: 7 additions & 6 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,18 @@
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/fmt": "jsr:@std/fmt@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.13",
"@std/fmt": "jsr:@std/fmt@^1.0.6",
"@std/fs": "jsr:@std/fs@^1.0.14",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/semver": "jsr:@std/semver@^1.0.4",
"@std/streams": "jsr:@std/streams@^1.0.9",
"@std/yaml": "jsr:@std/yaml@^1.0.5",
"@wok/case": "jsr:@wok/case@^1.0.2",
"@wok/deup": "jsr:@wok/deup@^2.1.2",
"@wok/k8s": "jsr:@wok/k8s@^1.32.2",
"@wok/schema": "jsr:@wok/schema@^2.2.0",
"@wok/utils": "jsr:@wok/utils@^4.2.9",
"@wok/deup": "jsr:@wok/deup@^3.0.0",
"@wok/k8s-api": "jsr:@wok/k8s-api@^1.32.2",
"@wok/k8s-utils": "jsr:@wok/k8s-utils@^2.0.0",
"@wok/schema": "jsr:@wok/schema@^3.0.0",
"@wok/utils": "jsr:@wok/utils@^5.0.1",
"json-schema-to-typescript": "npm:json-schema-to-typescript@^15.0.4"
}
}
115 changes: 54 additions & 61 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/actions/compile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { basename, join as joinPath, resolve as resolvePath } from "@std/path";
import { createCliAction, ExitCode } from "@wok/utils/cli";
import { cyan, gray } from "@std/fmt/colors";
import { importBundleModule } from "../libs/iac_utils.ts";
import { isK8sNamespace, K8sKind } from "@wok/utils/k8s";
import { isK8sNamespace, K8sKind } from "@wok/k8s-utils";
import { Arr, Str } from "../deps/schema.ts";
import { getDefaultLogger, type Logger } from "@wok/utils/logger";
import { extname } from "@std/path/extname";
Expand Down
4 changes: 2 additions & 2 deletions src/actions/typeify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ import { exists as fsExists } from "@std/fs";
import { parse as parseYaml } from "@std/yaml";
import { pascalCase } from "@wok/case";
import { inheritExec, printErrLines } from "@wok/utils/exec";
import { K8sCrdApiVersionV1beta1 } from "@wok/utils/k8s";
import { K8sCrdApiVersionV1beta1 } from "@wok/k8s-utils";
import { createCliAction, ExitCode } from "@wok/utils/cli";
import { cyan, gray } from "@std/fmt/colors";
import { Arr, Str } from "../deps/schema.ts";
import { compile as jsonSchemaToTs } from "json-schema-to-typescript";
import { getDefaultLogger, type Logger } from "@wok/utils/logger";
import { K8sKnownTypeKeySets } from "@wok/k8s/known-type-key-sets";
import { K8sKnownTypeKeySets } from "@wok/k8s-api/known-type-key-sets";

export type ClassifiedType =
| "array"
Expand Down
2 changes: 1 addition & 1 deletion src/actions/whitelist_instance.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { inheritExec, printErrLines, printOutLines } from "@wok/utils/exec";
import { createK8sConfigMap, type K8sConfigMap } from "@wok/utils/k8s";
import { createK8sConfigMap, type K8sConfigMap } from "@wok/k8s-utils";
import { createCliAction, ExitCode } from "@wok/utils/cli";
import { resolve as resolvePath } from "@std/path";
import { gray } from "@std/fmt/colors";
Expand Down
2 changes: 1 addition & 1 deletion src/deps/k8s.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "@wok/utils/k8s";
export * from "@wok/k8s-utils";
2 changes: 1 addition & 1 deletion src/libs/iac_utils.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { captureExec, inheritExec, NonZeroExitError, printErrLines } from "@wok/utils/exec";
import { type K8sCrd, K8sCrdKind, K8sCrdSchema, type K8sResource, K8sResourceSchema } from "@wok/utils/k8s";
import { type K8sCrd, K8sCrdKind, K8sCrdSchema, type K8sResource, K8sResourceSchema } from "@wok/k8s-utils";
import { exists as fsExists, expandGlob } from "@std/fs";
import { basename, dirname, fromFileUrl, join as joinPath } from "@std/path";
import { parse as parseYaml } from "@std/yaml";
Expand Down
2 changes: 1 addition & 1 deletion src/libs/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { K8sCrd, K8sResource } from "@wok/utils/k8s";
import type { K8sCrd, K8sResource } from "@wok/k8s-utils";
import type { Range as SemverRange } from "@std/semver";
import { Arr, Bool, Obj, Opt, Rec, Str, Unk } from "../deps/schema.ts";

Expand Down

0 comments on commit 45b3caf

Please sign in to comment.