fluncle 0.117.0 → 0.118.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/fluncle.mjs +3 -3
- package/package.json +1 -1
package/bin/fluncle.mjs
CHANGED
|
@@ -557,7 +557,7 @@ function parseVersion(version) {
|
|
|
557
557
|
var currentVersion;
|
|
558
558
|
var init_version = __esm(() => {
|
|
559
559
|
init_output();
|
|
560
|
-
currentVersion = "0.
|
|
560
|
+
currentVersion = "0.118.0".trim() ? "0.118.0".trim() : "0.1.0";
|
|
561
561
|
});
|
|
562
562
|
|
|
563
563
|
// src/update-notifier.ts
|
|
@@ -2251,7 +2251,7 @@ function parseVersion2(version) {
|
|
|
2251
2251
|
var currentVersion2, latestReleaseUrl = "https://api.github.com/repos/mauricekleine/fluncle/releases/latest";
|
|
2252
2252
|
var init_version2 = __esm(() => {
|
|
2253
2253
|
init_output();
|
|
2254
|
-
currentVersion2 = "0.
|
|
2254
|
+
currentVersion2 = "0.118.0".trim() ? "0.118.0".trim() : "0.1.0";
|
|
2255
2255
|
});
|
|
2256
2256
|
|
|
2257
2257
|
// ../../packages/registry/src/index.ts
|
|
@@ -9745,7 +9745,7 @@ function assertParseArgsCompatiblePositionals(args) {
|
|
|
9745
9745
|
if (third && !fourth) {
|
|
9746
9746
|
throw new Error(`Missing submission id for: ${third}`);
|
|
9747
9747
|
}
|
|
9748
|
-
if (third && fourth && third !== "review" && third !== "reject" && third !== "approve") {
|
|
9748
|
+
if (third && fourth && third !== "review" && third !== "reject" && third !== "approve" && third !== "triage") {
|
|
9749
9749
|
throw new Error(`Unknown submissions command: ${third}`);
|
|
9750
9750
|
}
|
|
9751
9751
|
}
|
package/package.json
CHANGED