-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add patch protocol test * Support patch protocol
- Loading branch information
Showing
8 changed files
with
47 additions
and
21 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
diff --git a/package.json b/package.json | ||
index ce0f2d99044712d15a94d48287077f5486e63281..d517dd0f3e183d0aea82112ebca97ea468196ebb 100644 | ||
--- a/package.json | ||
+++ b/package.json | ||
@@ -1,4 +1,5 @@ | ||
{ | ||
"name": "@scoped/patch", | ||
- "version": "1.0.0" | ||
+ "version": "1.0.0", | ||
+ "author": "Me" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
➤ YN0000: ┌ Checking for outdated dependencies | ||
➤ YN0000: └ Completed | ||
|
||
➤ YN0000: Package Current Latest Package Type | ||
➤ YN0000: alias 1.0.0 1.0.1 dependencies | ||
➤ YN0000: major 1.0.0 2.0.0 dependencies | ||
➤ YN0000: minor 1.0.0 1.1.0 dependencies | ||
➤ YN0000: patch 1.0.0 1.0.1 dependencies | ||
➤ YN0000: Package Current Latest Package Type | ||
➤ YN0000: @scoped/patch 1.0.0 1.0.1 dependencies | ||
➤ YN0000: alias 1.0.0 1.0.1 dependencies | ||
➤ YN0000: major 1.0.0 2.0.0 dependencies | ||
➤ YN0000: minor 1.0.0 1.1.0 dependencies | ||
➤ YN0000: patch 1.0.0 1.0.1 dependencies | ||
|
||
➤ YN0000: 4 dependencies are out of date | ||
➤ YN0000: 5 dependencies are out of date | ||
➤ YN0000: Done with warnings |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import fs from "fs" | ||
import path from "path" | ||
|
||
export function readSupplementalFile(filename: string) { | ||
return fs.readFileSync(path.join(__dirname, "..", "files", filename), "utf8") | ||
} |
This file was deleted.
Oops, something went wrong.