@zjex/git-workflow 0.3.5 → 0.3.6
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/index.js +3 -3
- package/package.json +1 -1
- package/src/commands/update.ts +1 -1
- package/src/update-notifier.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -266,7 +266,7 @@ async function performUpdate(packageName) {
|
|
|
266
266
|
borderStyle: "round",
|
|
267
267
|
borderColor: "green",
|
|
268
268
|
align: "left",
|
|
269
|
-
width:
|
|
269
|
+
width: 40
|
|
270
270
|
}
|
|
271
271
|
)
|
|
272
272
|
);
|
|
@@ -2561,7 +2561,7 @@ async function update(currentVersion) {
|
|
|
2561
2561
|
borderStyle: "round",
|
|
2562
2562
|
borderColor: "green",
|
|
2563
2563
|
align: "left",
|
|
2564
|
-
width:
|
|
2564
|
+
width: 40
|
|
2565
2565
|
}
|
|
2566
2566
|
)
|
|
2567
2567
|
);
|
|
@@ -2916,7 +2916,7 @@ process.on("SIGTERM", () => {
|
|
|
2916
2916
|
console.log("");
|
|
2917
2917
|
process.exit(0);
|
|
2918
2918
|
});
|
|
2919
|
-
var version = true ? "0.3.
|
|
2919
|
+
var version = true ? "0.3.6" : "0.0.0-dev";
|
|
2920
2920
|
async function mainMenu() {
|
|
2921
2921
|
console.log(
|
|
2922
2922
|
colors.green(`
|
package/package.json
CHANGED
package/src/commands/update.ts
CHANGED