Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ckeditor/ckeditor5-dev-release-tools

Package Overview
Dependencies
Maintainers
0
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-dev-release-tools - npm Package Compare versions

Comparing version 45.0.0 to 45.0.1

5

lib/tasks/commitandtag.js

@@ -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 }` );
}

4

package.json
{
"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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc