This repository was archived by the owner on Dec 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcli.js
executable file
·79 lines (68 loc) · 2.25 KB
/
cli.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env node
const gittags = require("./git-tags");
const inquirer = require("inquirer");
const semverRegex = require("semver-regex");
const chalk = require("chalk");
const git = require('./utilities/git');
const PARTS = {
patch: 2,
minor: 1,
major: 0
};
const questions = [{
type: "list",
name: "part",
message: "Which part of the version you want to bump?",
choices: ["Patch (?.?.x)", "Minor (?.x.?)", "Major (x.?.?)"]
}];
gittags.latest().then(tag => {
if (!tag || !semverRegex().test(tag)) {
console.log(chalk.red("You do not have any version following semver yet!"));
console.log(
"You have to create one first. E.g. " + chalk.green("git tag 0.0.1")
);
process.exit(1);
}
console.log(chalk.yellow("Current version: "), chalk.black.bgYellow(tag));
// prompt for what part of the version you want to bump.
inquirer.prompt(questions).then(answer => {
git.getRepoConfig().then(config => {
let version = semverRegex().exec(tag)[0];
let bumped = getBumbedVersion(version, answer.part);
let bumpedPrefix = config.hasOwnProperty('gitflow.prefix.release')
? config['gitflow.prefix.release'] + bumped
: bumped;
git.createTag(bumpedPrefix).then(() => {
console.log(
chalk.green("Bumped version to "),
chalk.bgGreen.black(bumped)
);
}).catch(err => {
console.log(
chalk.red("Could not create"),
chalk.red.bold(bumped),
chalk.red("tag")
);
console.log(err);
process.exit(1);
});
});
});
}).catch(err => {
throw err;
});
function parseVersionPart(partString) {
return PARTS[partString.toLowerCase().substr(0, 5)];
}
function getBumbedVersion(version, part) {
versionIndex = parseVersionPart(part);
versionParts = version.split(".");
versionParts[versionIndex] = parseInt(versionParts[versionIndex]) + 1;
if (versionIndex <= 1) {
versionParts[2] = 0;
}
if (versionIndex == 0) {
versionParts[1] = 0;
}
return versionParts.join(".");
}