conventional-changelog-beemo
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -0,1 +1,8 @@ | ||
## 1.1.0 - 2019-04-4 | ||
#### 🚀 Updates | ||
- Added a `checkCommitFormat` named export, which can be used to check a message is valid. Perfect | ||
for CI checks. | ||
# 1.0.0 - 2019-04-02 | ||
@@ -2,0 +9,0 @@ |
@@ -5,3 +5,2 @@ /** | ||
*/ | ||
import checkCommitFormat from './checkCommitFormat'; | ||
import conventionalChangelog from './conventionalChangelog'; | ||
@@ -11,3 +10,2 @@ import parserOpts from './parserOpts'; | ||
import writerOpts from './writerOpts'; | ||
export { checkCommitFormat }; | ||
export default Promise.resolve({ | ||
@@ -14,0 +12,0 @@ conventionalChangelog, |
@@ -82,2 +82,3 @@ import fs from 'fs'; | ||
context.date = '2019-02-26'; | ||
context.version = '0.0.0'; | ||
} | ||
@@ -84,0 +85,0 @@ |
@@ -1,1 +0,5 @@ | ||
module.exports = require('./lib').default; | ||
const beemo = require('./lib').default; | ||
beemo.checkCommitFormat = require('./lib/checkCommitFormat').default; | ||
module.exports = beemo; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.__esModule = true; | ||
exports.default = checkCommitFormat; | ||
@@ -7,0 +5,0 @@ |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.__esModule = true; | ||
exports.default = void 0; | ||
@@ -7,0 +5,0 @@ |
@@ -5,4 +5,2 @@ /** | ||
*/ | ||
import checkCommitFormat from './checkCommitFormat'; | ||
export { checkCommitFormat }; | ||
declare const _default: Promise<{ | ||
@@ -9,0 +7,0 @@ conventionalChangelog: { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
Object.defineProperty(exports, "checkCommitFormat", { | ||
enumerable: true, | ||
get: function () { | ||
return _checkCommitFormat.default; | ||
} | ||
}); | ||
exports.__esModule = true; | ||
exports.default = void 0; | ||
var _checkCommitFormat = _interopRequireDefault(require("./checkCommitFormat")); | ||
var _conventionalChangelog = _interopRequireDefault(require("./conventionalChangelog")); | ||
@@ -17,0 +7,0 @@ |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.__esModule = true; | ||
exports.default = void 0; | ||
@@ -7,0 +5,0 @@ const options = { |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.__esModule = true; | ||
exports.default = void 0; | ||
@@ -7,0 +5,0 @@ |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { | ||
value: true | ||
}); | ||
exports.__esModule = true; | ||
exports.default = void 0; | ||
@@ -93,2 +91,3 @@ | ||
context.date = '2019-02-26'; | ||
context.version = '0.0.0'; | ||
} | ||
@@ -95,0 +94,0 @@ |
{ | ||
"name": "conventional-changelog-beemo", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Conventional changelog preset for Beemo and associated projects.", | ||
@@ -32,3 +32,3 @@ "keywords": [ | ||
"devDependencies": { | ||
"@milesj/build-tools": "^0.37.2", | ||
"@milesj/build-tools": "^0.37.3", | ||
"@types/node": "^11.13.0", | ||
@@ -35,0 +35,0 @@ "@types/shelljs": "^0.8.4", |
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
24308
550