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

fxa-conventional-changelog

Package Overview
Dependencies
Maintainers
5
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fxa-conventional-changelog - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

11

index.js

@@ -7,3 +7,3 @@ 'use strict';

var semver = require('semver');
var _ = require('lodash');
var map = require('lodash.map');

@@ -25,2 +25,7 @@ function presetOpts() {

transform: function(commit) {
if (commit.type === null) {
// It's probably a merged branch or PR, so skip this commit.
return;
}
if (commit.type === 'feat') {

@@ -36,4 +41,2 @@ commit.type = 'Features';

commit.type = 'Refactor';
} else {
return;
}

@@ -53,3 +56,3 @@

_.map(commit.notes, function(note) {
map(commit.notes, function(note) {
if (note.title === 'BREAKING CHANGE') {

@@ -56,0 +59,0 @@ note.title = 'BREAKING CHANGES';

{
"name": "fxa-conventional-changelog",
"version": "1.0.0",
"description": "Conventional Changelog Template for FxA",
"main": "index.js",
"scripts": {
"test": "mocha tests/"
},
"author": "",
"license": "MPL-2.0",
"version": "1.1.0",
"author": "vladikoff",
"dependencies": {
"compare-func": "1.3.1",
"lodash": "3.10.1",
"mocha": "2.3.2",
"lodash.map": "3.1.4",
"semver": "5.0.1"

@@ -19,4 +13,11 @@ },

"assert": "1.3.0",
"mocha": "2.3.2",
"tap": "1.4.1"
},
"license": "MPL-2.0",
"main": "index.js",
"repository": "vladikoff/fxa-conventional-changelog",
"scripts": {
"test": "mocha tests/"
}
}

@@ -6,1 +6,6 @@ ## fxa-conventional-changelog

Based on the Angular.js template
## Changelog
1.1.0 - Allow for all types of commit messages to be in the changelog
1.0.0 - Released

Sorry, the diff of this file is not supported yet

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