Skip to content

Commit 7d2b585

Browse files
committed
fix(deps): update dependency @softwareventures/chain to v3
1 parent 5a8a744 commit 7d2b585

File tree

17 files changed

+20
-20
lines changed

17 files changed

+20
-20
lines changed

cli/init.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {exit} from "process";
22
import {forEachFn, mapFn} from "@softwareventures/array";
3-
import chain from "@softwareventures/chain";
3+
import {chain} from "@softwareventures/chain";
44
import {hasProperty} from "unknown";
55
import type {InitFailureReason} from "../project/init";
66
import init from "../project/init";

cli/update.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {exit} from "process";
2-
import chain from "@softwareventures/chain";
2+
import {chain} from "@softwareventures/chain";
33
import {forEachFn, mapFn} from "@softwareventures/array";
44
import {hasProperty} from "unknown";
55
import type {ReadProjectFailureReason} from "../project/read";

fs-stage/commit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {promises as fs} from "fs";
22
import {resolve} from "path";
3-
import chain from "@softwareventures/chain";
3+
import {chain} from "@softwareventures/chain";
44
import {mapFn} from "@softwareventures/iterable";
55
import {hasProperty} from "unknown";
66
import {liftPromises, liftResults, mapValue} from "../collections/maps";

fs-stage/file-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {first, tail} from "@softwareventures/array";
2-
import chain from "@softwareventures/chain";
2+
import {chain} from "@softwareventures/chain";
33
import type {Result} from "../result/result";
44
import {failure, mapFailure, mapFailureFn, mapResultFn, success} from "../result/result";
55
import {insert as mapInsert} from "../collections/maps";

fs-stage/fs-stage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chain from "@softwareventures/chain";
1+
import {chain} from "@softwareventures/chain";
22
import type {Result} from "../result/result";
33
import {mapResultFn} from "../result/result";
44
import type {Directory} from "./directory";

fs-stage/path.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import chain from "@softwareventures/chain";
1+
import {chain} from "@softwareventures/chain";
22
import {foldFn, initial, push} from "@softwareventures/array";
33

44
export function resolvePathSegments(path: string): readonly string[] | null {

github/add-missing-node-versions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {append, exclude, map} from "@softwareventures/array";
2-
import chain from "@softwareventures/chain";
2+
import {chain} from "@softwareventures/chain";
33
import {intersects} from "semver";
44
import {mapNullableFn} from "@softwareventures/nullable";
55
import type {Project} from "../project/project";

ignore/ignore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {posix} from "path";
22
import {concat, first, foldFn, mapFn, tail} from "@softwareventures/array";
3-
import chain from "@softwareventures/chain";
3+
import {chain} from "@softwareventures/chain";
44
import {mapNullableFn, mapNullFn} from "@softwareventures/nullable";
55
import picomatch = require("picomatch");
66

license/update-copyright-year.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {EOL} from "os";
2-
import chain from "@softwareventures/chain";
2+
import {chain} from "@softwareventures/chain";
33
import {
44
concat,
55
first,

node/read.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type {Date} from "@softwareventures/date";
22
import {concatMapFn, filterFn, isArray, mapFn, only} from "@softwareventures/array";
33
import {intersects} from "semver";
4-
import chain from "@softwareventures/chain";
4+
import {chain} from "@softwareventures/chain";
55
import {mapNullFn} from "@softwareventures/nullable";
66
import type {ProjectSource} from "../project/project";
77
import type {ReadJsonFailureReason} from "../project/read-json";

0 commit comments

Comments
 (0)