cherrypick-interactive 1.4.0 → 1.4.2
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/cli.js +0 -2
- package/package.json +13 -5
package/cli.js
CHANGED
|
@@ -896,8 +896,6 @@ async function setPkgVersion(pkgPath, nextVersion) {
|
|
|
896
896
|
}
|
|
897
897
|
|
|
898
898
|
function parseSemverIgnore(argvValue) {
|
|
899
|
-
log(chalk.cyan(`↷ Semver ignored values: ${chalk.dim(`(${argvValue})`)}`));
|
|
900
|
-
|
|
901
899
|
if (!argvValue) return [];
|
|
902
900
|
return argvValue
|
|
903
901
|
.split(',')
|
package/package.json
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cherrypick-interactive",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.2",
|
|
4
4
|
"description": "Interactively cherry-pick commits that are in dev but not in main, using subject-based comparison.",
|
|
5
5
|
"main": "cli.js",
|
|
6
|
-
"bin":
|
|
6
|
+
"bin": {
|
|
7
|
+
"cherrypick-interactive": "cli.js"
|
|
8
|
+
},
|
|
7
9
|
"type": "module",
|
|
8
10
|
"scripts": {
|
|
9
|
-
"publish": "npm publish --access public",
|
|
10
11
|
"lint": "biome lint .",
|
|
11
12
|
"format": "biome format --write .",
|
|
12
13
|
"check": "biome check .",
|
|
13
|
-
"fix": "biome check --write ."
|
|
14
|
+
"fix": "biome check --write .",
|
|
15
|
+
"release": "npm publish --access public"
|
|
14
16
|
},
|
|
15
17
|
"engines": {
|
|
16
18
|
"node": ">=20"
|
|
@@ -25,7 +27,13 @@
|
|
|
25
27
|
"devDependencies": {
|
|
26
28
|
"@biomejs/biome": "^1.9.4"
|
|
27
29
|
},
|
|
28
|
-
"keywords": [
|
|
30
|
+
"keywords": [
|
|
31
|
+
"git",
|
|
32
|
+
"cli",
|
|
33
|
+
"cherry-pick",
|
|
34
|
+
"interactive",
|
|
35
|
+
"devops"
|
|
36
|
+
],
|
|
29
37
|
"license": "MIT",
|
|
30
38
|
"packageManager": "yarn@4.6.0"
|
|
31
39
|
}
|