New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cob-commitizen

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cob-commitizen - npm Package Compare versions

Comparing version

to
1.0.1

2

package.json
{
"name": "cob-commitizen",
"version": "1.0.0",
"version": "1.0.1",
"description": "COB Commitizen adapter following the conventional-changelog format",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1,14 +0,5 @@

const fs = require('fs');
const inquirer = require('inquirer');
const wrap = require('word-wrap');
const appRoot = require('app-root-path');
const {
makePackagesQuestion,
questions
} = require('./prompt/questions');
const questions = require('./prompt/questions');
const LimitedInput = require('./prompt/LimitedInput');
const {
getAllPackages,
getChangedPackages
} = require('./lernaUtils');

@@ -19,25 +10,6 @@ const MAX_LINE_WIDTH = 72;

const IS_LERNA_PROJECT = fs.existsSync(appRoot.resolve('lerna.json'));
const makeAffectsLine = function (answers) {
const selectedPackages = answers.packages;
if (selectedPackages && selectedPackages.length) {
return `\naffects: ${selectedPackages.join(', ')}`;
}
return '';
};
module.exports = {
prompter (cz, commit) {
let promptQuestions = questions;
const promptQuestions = questions;
if (IS_LERNA_PROJECT) {
const allPackages = getAllPackages().map((pkg) => pkg.name);
const changedPackages = getChangedPackages();
promptQuestions = promptQuestions.concat(makePackagesQuestion(allPackages, changedPackages));
}
return inquirer.prompt(promptQuestions)

@@ -52,6 +24,5 @@ .then((answers) => {

const head = answers.type + ': ' + answers.subject;
const affectsLine = makeAffectsLine(answers);
// Wrap these lines at MAX_LINE_WIDTH character
const body = wrap(answers.body + affectsLine, wrapOptions);
const body = wrap(answers.body, wrapOptions);
const breaking = wrap(answers.breaking, wrapOptions);

@@ -58,0 +29,0 @@ const footer = wrap(answers.footer, wrapOptions);

@@ -80,13 +80,2 @@ const MAX_SUBJECT_LENGTH = 50;

const makePackagesQuestion = (allPackages, changedPackages) => ({
choices: allPackages,
default: changedPackages,
message: `The packages that this commit has affected (${changedPackages.length} detected)\n`,
name: 'packages',
type: 'checkbox'
});
module.exports = {
makePackagesQuestion,
questions
};
module.exports = questions;