contribute-now 0.7.2-dev.f446e47 → 0.7.2-staging.b7ddece
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/dist/cli.js +5 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -12825,7 +12825,7 @@ var import_picocolors11 = __toESM(require_picocolors(), 1);
|
|
|
12825
12825
|
// package.json
|
|
12826
12826
|
var package_default = {
|
|
12827
12827
|
name: "contribute-now",
|
|
12828
|
-
version: "0.7.2-
|
|
12828
|
+
version: "0.7.2-staging.b7ddece",
|
|
12829
12829
|
description: "Developer CLI that automates git workflows \u2014 branching, syncing, committing, and PRs \u2014 with multi-workflow and commit convention support.",
|
|
12830
12830
|
type: "module",
|
|
12831
12831
|
bin: {
|
|
@@ -17336,4 +17336,7 @@ var main = defineCommand({
|
|
|
17336
17336
|
}
|
|
17337
17337
|
}
|
|
17338
17338
|
});
|
|
17339
|
-
runMain(main)
|
|
17339
|
+
runMain(main).then(() => process.exit(process.exitCode ?? 0)).catch((err) => {
|
|
17340
|
+
console.error(err);
|
|
17341
|
+
process.exit(1);
|
|
17342
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contribute-now",
|
|
3
|
-
"version": "0.7.2-
|
|
3
|
+
"version": "0.7.2-staging.b7ddece",
|
|
4
4
|
"description": "Developer CLI that automates git workflows — branching, syncing, committing, and PRs — with multi-workflow and commit convention support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|