Skip to content

Commit

Permalink
chore(deps): update dependency @david/dax to v0.42.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Sep 28, 2024
1 parent a0b635c commit 3903f80
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config/karabiner/queries/close-window.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { $ } from "jsr:@david/dax@0.41.0";
import { $ } from "jsr:@david/dax@0.42.0";
import { errAsync, okAsync, ResultAsync } from "npm:[email protected]";
import { is } from "jsr:@core/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion config/karabiner/queries/create-spaces.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { $ } from "jsr:@david/dax@0.41.0";
import { $ } from "jsr:@david/dax@0.42.0";

export async function createSpaces(times: number): Promise<void> {
for (let i = 0; i < times; i++) {
Expand Down
2 changes: 1 addition & 1 deletion config/karabiner/queries/focus-in-display.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { $ } from "jsr:@david/dax@0.41.0";
import { $ } from "jsr:@david/dax@0.42.0";
import { errAsync, okAsync, ResultAsync } from "npm:[email protected]";
import { ensure, is } from "jsr:@core/[email protected]";

Expand Down
2 changes: 1 addition & 1 deletion config/karabiner/queries/focus-space.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ensure, is } from "jsr:@core/[email protected]";
import { errAsync, okAsync, ResultAsync } from "npm:[email protected]";
import { createSpaces } from "./create-spaces.ts";
import { $ } from "jsr:@david/dax@0.41.0";
import { $ } from "jsr:@david/dax@0.42.0";

const isWindow = is.ObjectOf({
id: is.Number,
Expand Down
2 changes: 1 addition & 1 deletion config/karabiner/queries/move-space.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ensure, is } from "jsr:@core/[email protected]";
import { $ } from "jsr:@david/dax@0.41.0";
import { $ } from "jsr:@david/dax@0.42.0";
import { okAsync, ResultAsync } from "npm:[email protected]";
import { createSpaces } from "./create-spaces.ts";

Expand Down
2 changes: 1 addition & 1 deletion config/karabiner/queries/move-window.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ensure, is } from "jsr:@core/[email protected]";
import { $ } from "jsr:@david/dax@0.41.0";
import { $ } from "jsr:@david/dax@0.42.0";
import { ResultAsync } from "npm:[email protected]";

const hasId = is.ObjectOf({
Expand Down

0 comments on commit 3903f80

Please sign in to comment.