Socket
Socket
Sign inDemoInstall

conventional-changelog-config-spec

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

conventional-changelog-config-spec - npm Package Compare versions

Comparing version 2.0.0 to 2.1.0

CHANGELOG.md

2

index.js

@@ -1,1 +0,1 @@

module.exports = require('./versions/2.0.0/schema.json')
module.exports = require('./versions/2.1.0/schema.json')
{
"name": "conventional-changelog-config-spec",
"version": "2.0.0",
"version": "2.1.0",
"description": "a spec describing the config options supported by conventional-config for upstream tooling",

@@ -8,3 +8,4 @@ "main": "index.js",

"pretest": "standard",
"test": "npx mocha tests/*.test.js"
"test": "npx mocha tests/*.test.js",
"release": "standard-version"
},

@@ -27,6 +28,7 @@ "repository": {

"devDependencies": {
"ajv": "6.10.0",
"mocha": "6.1.4",
"standard": "12.0.1"
"ajv": "6.10.2",
"mocha": "^6.2.0",
"standard": "14.0.0",
"standard-version": "^7.0.0"
}
}

@@ -6,2 +6,3 @@ # Conventional Changelog Configuration Spec

- [v1.0.0](versions/1.0.0/README.md)
- [v2.0.0](versions/2.0.0/README.md) - *Current*
- [v2.0.0](versions/2.0.0/README.md)
- [v2.1.0](versions/2.1.0/README.md) - *Current*

@@ -16,6 +16,6 @@ /* global describe, it */

const mock = {
'types': [
{ 'type': 'feat', 'section': 'Features' },
{ 'type': 'fix', 'section': 'Bug Fixes' },
{ 'type': 'imp', 'hidden': true }
types: [
{ type: 'feat', section: 'Features' },
{ type: 'fix', section: 'Bug Fixes' },
{ type: 'imp', hidden: true }
]

@@ -30,6 +30,6 @@ }

const mock = {
'types': [
{ 'type': 'feat', 'section': 'Features' },
{ 'type': 'fix', 'this_will_be_invalid': 'Bug Fixes' },
{ 'type': 'docs', 'hidden': true }
types: [
{ type: 'feat', section: 'Features' },
{ type: 'fix', this_will_be_invalid: 'Bug Fixes' },
{ type: 'docs', hidden: true }
]

@@ -36,0 +36,0 @@ }

@@ -22,3 +22,3 @@ /* global describe, it */

const mock = {
'header': '#`changelog`\n\n'
header: '#`changelog`\n\n'
}

@@ -25,0 +25,0 @@ assert(validate(mock))

@@ -5,3 +5,3 @@ # Conventional Changelog Configuration Spec (v2.0.0)

- [title](#title-string)
- [header](#header-string)
- [types](#types)

@@ -26,5 +26,5 @@ - [type](#type)

### title (`string`)
### header (`string`)
A string to be used as the main title of the CHANGELOG.
A string to be used as the main header of the CHANGELOG.

@@ -31,0 +31,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