@ckeditor/ckeditor5-dev-release-tools
Advanced tools
Comparing version 45.0.0 to 45.0.1
@@ -19,5 +19,6 @@ /** | ||
* @param {string} [options.cwd=process.cwd()] Current working directory from which all paths will be resolved. | ||
* @param {boolean} [options.skipCi=true] Whether to add the "[skip ci]" suffix to the commit message. | ||
* @returns {Promise} | ||
*/ | ||
export default async function commitAndTag( { version, files, cwd = process.cwd() } ) { | ||
export default async function commitAndTag( { version, files, cwd = process.cwd(), skipCi = true } ) { | ||
const normalizedCwd = toUnix( cwd ); | ||
@@ -42,4 +43,4 @@ const filePathsToAdd = await glob( files, { cwd: normalizedCwd, absolute: true, nodir: true } ); | ||
await git.commit( `Release: v${ version }.`, filePathsToAdd ); | ||
await git.commit( `Release: v${ version }.${ skipCi ? ' [skip ci]' : '' }`, filePathsToAdd ); | ||
await git.addTag( `v${ version }` ); | ||
} |
{ | ||
"name": "@ckeditor/ckeditor5-dev-release-tools", | ||
"version": "45.0.0", | ||
"version": "45.0.1", | ||
"description": "Tools used for releasing CKEditor 5 and related packages.", | ||
@@ -25,3 +25,3 @@ "keywords": [], | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-dev-utils": "^45.0.0", | ||
"@ckeditor/ckeditor5-dev-utils": "^45.0.1", | ||
"@octokit/rest": "^21.0.0", | ||
@@ -28,0 +28,0 @@ "chalk": "^5.0.0", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
154522
3834