@neferbyte/cherry-release-cli 1.0.3 → 1.0.4
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.
|
@@ -159,7 +159,7 @@ step "Deploying to development"
|
|
|
159
159
|
|
|
160
160
|
git checkout development
|
|
161
161
|
git pull --ff-only
|
|
162
|
-
"$SCRIPT_DIR/release
|
|
162
|
+
"$SCRIPT_DIR/cherry-release-version" patch
|
|
163
163
|
git push --follow-tags origin development
|
|
164
164
|
echo -e " \033[1;32m✓\033[0m development released"
|
|
165
165
|
|
|
@@ -175,7 +175,7 @@ if [[ ${#staging_commits[@]} -gt 0 ]]; then
|
|
|
175
175
|
done
|
|
176
176
|
git push origin staging
|
|
177
177
|
fi
|
|
178
|
-
"$SCRIPT_DIR/release
|
|
178
|
+
"$SCRIPT_DIR/cherry-release-version" patch
|
|
179
179
|
git push --follow-tags origin staging
|
|
180
180
|
echo -e " \033[1;32m✓\033[0m staging released"
|
|
181
181
|
|
|
@@ -191,7 +191,7 @@ if [[ ${#production_commits[@]} -gt 0 ]]; then
|
|
|
191
191
|
done
|
|
192
192
|
git push origin production
|
|
193
193
|
fi
|
|
194
|
-
"$SCRIPT_DIR/release
|
|
194
|
+
"$SCRIPT_DIR/cherry-release-version" patch
|
|
195
195
|
git push --follow-tags origin production
|
|
196
196
|
echo -e " \033[1;32m✓\033[0m production released"
|
|
197
197
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neferbyte/cherry-release-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Cherry-pick commits across environment branches and tag releases",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"bin": {
|
|
7
|
-
"cherry-release": "./bin/cherry-release
|
|
8
|
-
"cherry-release-version": "./bin/release
|
|
7
|
+
"cherry-release": "./bin/cherry-release",
|
|
8
|
+
"cherry-release-version": "./bin/cherry-release-version"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"bin/"
|
|
File without changes
|