@ckeditor/ckeditor5-dev-release-tools 44.0.0-alpha.1 → 44.0.0-alpha.3
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.
|
@@ -38,7 +38,11 @@ export default async function commitAndTag( { version, files, cwd = process.cwd(
|
|
|
38
38
|
await tools.shExec( `git add ${ shellEscape( [ filePath ] ) }`, shExecOptions );
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
const escapedVersion =
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
const escapedVersion = {
|
|
42
|
+
commit: shellEscape( [ `Release: v${ version }.` ] ),
|
|
43
|
+
tag: shellEscape( [ `v${ version }` ] )
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
await tools.shExec( `git commit --message ${ escapedVersion.commit } --no-verify`, shExecOptions );
|
|
47
|
+
await tools.shExec( `git tag ${ escapedVersion.tag }`, shExecOptions );
|
|
44
48
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-dev-release-tools",
|
|
3
|
-
"version": "44.0.0-alpha.
|
|
3
|
+
"version": "44.0.0-alpha.3",
|
|
4
4
|
"description": "Tools used for releasing CKEditor 5 and related packages.",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"lib"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@ckeditor/ckeditor5-dev-utils": "^44.0.0-alpha.
|
|
25
|
+
"@ckeditor/ckeditor5-dev-utils": "^44.0.0-alpha.3",
|
|
26
26
|
"@octokit/rest": "^21.0.0",
|
|
27
27
|
"chalk": "^5.0.0",
|
|
28
28
|
"cli-columns": "^4.0.0",
|