conventional-changelog-beemo
Advanced tools
Comparing version 4.0.0 to 4.1.0
@@ -5,10 +5,4 @@ /** | ||
*/ | ||
import { parserOpts } from './parserOpts'; | ||
import { writerOpts } from './writerOpts'; | ||
import { whatBump } from './whatBump'; | ||
export { checkCommitFormat } from './checkCommitFormat'; | ||
export * from './constants'; | ||
export { getTypeGroup } from './getTypeGroup'; | ||
export * from './types'; | ||
export { parserOpts, writerOpts, whatBump }; | ||
export default function createPreset(): { | ||
@@ -15,0 +9,0 @@ parser: import("./types").ParserOptions; |
'use strict'; | ||
Object.defineProperty(exports, '__esModule', { | ||
value: true | ||
}); | ||
const parserOpts = require('./parserOpts.js'); | ||
const writerOpts = require('./writerOpts.js'); | ||
const whatBump = require('./whatBump.js'); | ||
const checkCommitFormat = require('./checkCommitFormat.js'); | ||
const constants = require('./constants.js'); | ||
const getTypeGroup = require('./getTypeGroup.js'); | ||
require('./types.js'); | ||
@@ -26,10 +20,3 @@ | ||
} | ||
exports.parserOpts = parserOpts.parserOpts; | ||
exports.writerOpts = writerOpts.writerOpts; | ||
exports.whatBump = whatBump.whatBump; | ||
exports.checkCommitFormat = checkCommitFormat.checkCommitFormat; | ||
exports.COMMIT_FORMAT_PREFIX = constants.COMMIT_FORMAT_PREFIX; | ||
exports.GROUPS = constants.GROUPS; | ||
exports.getTypeGroup = getTypeGroup.getTypeGroup; | ||
exports.default = createPreset; | ||
module.exports = createPreset; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "conventional-changelog-beemo", | ||
"version": "4.0.0", | ||
"version": "4.1.0", | ||
"description": "Conventional changelog preset for Beemo and associated projects.", | ||
@@ -25,3 +25,3 @@ "keywords": [ | ||
"build": "packemon build --addEngines", | ||
"pack": "packemon pack --addEngines --declaration", | ||
"pack": "packemon pack --addEngines --addExports --declaration", | ||
"check": "yarn run type && yarn run test", | ||
@@ -53,6 +53,22 @@ "test": "vitest --run", | ||
"packemon": { | ||
"api": "private", | ||
"format": "lib", | ||
"platform": "node" | ||
"platform": "node", | ||
"inputs": { | ||
"index": "src/index.ts", | ||
"core": "src/core.ts" | ||
} | ||
}, | ||
"exports": { | ||
"./package.json": "./package.json", | ||
"./core": { | ||
"types": "./lib/core.d.ts", | ||
"default": "./lib/core.js" | ||
}, | ||
".": { | ||
"types": "./lib/index.d.ts", | ||
"default": "./lib/index.js" | ||
} | ||
}, | ||
"packageManager": "yarn@3.2.0" | ||
} |
@@ -10,9 +10,4 @@ /** | ||
export { checkCommitFormat } from './checkCommitFormat'; | ||
export * from './constants'; | ||
export { getTypeGroup } from './getTypeGroup'; | ||
export * from './types'; | ||
export { parserOpts, writerOpts, whatBump }; | ||
export default function createPreset() { | ||
@@ -19,0 +14,0 @@ return { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
46793
52
853