Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/clear-rabbits-agree.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@nodesecure/conformance": patch
"@nodesecure/rc": patch
---

Update @openally/result to v2.0.0
2 changes: 1 addition & 1 deletion workspaces/conformance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"dependencies": {
"@nodesecure/mama": "^2.0.0",
"@openally/result": "^1.2.1",
"@openally/result": "2.0.0",
"astring": "^1.9.0",
"fastest-levenshtein": "^1.0.16",
"spdx-expression-parse": "^4.0.0"
Expand Down
2 changes: 1 addition & 1 deletion workspaces/conformance/src/parse.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Import Third-party Dependencies
import parseExpressions from "spdx-expression-parse";
import { Result, Ok, Err } from "@openally/result";
import { type Result, Ok, Err } from "@openally/result";

// Import Internal Dependencies
import {
Expand Down
2 changes: 1 addition & 1 deletion workspaces/rc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@nodesecure/npm-types": "^1.2.0",
"@nodesecure/vulnera": "^2.0.1",
"@openally/config": "^1.0.1",
"@openally/result": "^1.2.1",
"@openally/result": "2.0.0",
"lodash.merge": "^4.6.2",
"type-fest": "^5.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion workspaces/rc/src/functions/read.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { once } from "node:events";

// Import Third-party Dependencies
import { AsynchronousConfig } from "@openally/config";
import { Ok, Err, Result } from "@openally/result";
import { Ok, Err, type Result } from "@openally/result";
import type { RequireAtLeastOne } from "type-fest";

// Import Internal Dependencies
Expand Down
2 changes: 1 addition & 1 deletion workspaces/rc/src/functions/write.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from "node:path";

// Import Third-party Dependencies
import { AsynchronousConfig } from "@openally/config";
import { Ok, Err, Result } from "@openally/result";
import { Ok, Err, type Result } from "@openally/result";

// Import Internal Dependencies
import { JSONSchema, type RC } from "../rc.ts";
Expand Down