Skip to content

Commit

Permalink
fix: Ensures provided packageFiles arguments are merged with `bumpF…
Browse files Browse the repository at this point in the history
…iles` when no `bumpFiles` argument is specified (default). (#534)

- Merges `packageFiles` with `defaults.bumpFiles` before merging in arguments when a `packageFile` argument is present.
- Adds some simple "validation" to updaters and improves error messaging.
- Adds a test case covering #533

closes #533
  • Loading branch information
jbottigliero committed Oct 19, 2021
1 parent 938828d commit 2785023
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 5 deletions.
8 changes: 8 additions & 0 deletions index.js
Expand Up @@ -37,10 +37,18 @@ module.exports = async function standardVersion (argv) {
throw Error(`custom changelog header must not match ${changelog.START_OF_LAST_RELEASE_PATTERN}`)
}

/**
* If an argument for `packageFiles` provided, we include it as a "default" `bumpFile`.
*/
if (argv.packageFiles) {
defaults.bumpFiles = defaults.bumpFiles.concat(argv.packageFiles)
}

const args = Object.assign({}, defaults, argv)
let pkg
for (const packageFile of args.packageFiles) {
const updater = resolveUpdaterObjectFromArgument(packageFile)
if (!updater) return
const pkgPath = path.resolve(process.cwd(), updater.filename)
try {
const contents = fs.readFileSync(pkgPath, 'utf8')
Expand Down
23 changes: 18 additions & 5 deletions lib/updaters/index.js
Expand Up @@ -26,7 +26,7 @@ function getUpdaterByFilename (filename) {
)
}

function getCustomUpdater (updater) {
function getCustomUpdaterFromPath (updater) {
if (typeof updater === 'string') {
return require(path.resolve(process.cwd(), updater))
}
Expand All @@ -39,32 +39,45 @@ function getCustomUpdater (updater) {
throw new Error('Updater must be a string path or an object with readVersion and writeVersion methods')
}

/**
* Simple check to determine if the object provided is a compatible updater.
*/
function isValidUpdater (obj) {
return (
typeof obj.readVersion === 'function' &&
typeof obj.writeVersion === 'function'
)
}

module.exports.resolveUpdaterObjectFromArgument = function (arg) {
/**
* If an Object was not provided, we assume it's the path/filename
* of the updater.
*/
let updater = arg
if (isValidUpdater(updater)) {
return updater
}
if (typeof updater !== 'object') {
updater = {
filename: arg
}
}
try {
if (updater.updater) {
updater.updater = getCustomUpdater(updater.updater)
if (typeof updater.updater === 'string') {
updater.updater = getCustomUpdaterFromPath(updater.updater)
} else if (updater.type) {
updater.updater = getUpdaterByType(updater.type)
} else {
updater.updater = getUpdaterByFilename(updater.filename)
}
} catch (err) {
if (err.code !== 'ENOENT') console.warn(err.message)
if (err.code !== 'ENOENT') console.warn(`Unable to obtain updater for: ${JSON.stringify(arg)}\n - Error: ${err.message}\n - Skipping...`)
}
/**
* We weren't able to resolve an updater for the argument.
*/
if (!updater.updater) {
if (!isValidUpdater(updater.updater)) {
return false
}

Expand Down
26 changes: 26 additions & 0 deletions test/core.spec.js
Expand Up @@ -568,6 +568,32 @@ describe('standard-version', function () {
})
})

it('`packageFiles` are bumped along with `bumpFiles` defaults [standard-version#533]', async function () {
mock({
bump: 'minor',
fs: {
'.gitignore': '',
'package-lock.json': JSON.stringify({ version: '1.0.0' }),
'manifest.json': fs.readFileSync('./test/mocks/manifest-6.3.1.json')
},
tags: ['v1.0.0']
})

await exec({
silent: true,
packageFiles: [
{
filename: 'manifest.json',
type: 'json'
}
]
})

JSON.parse(fs.readFileSync('manifest.json', 'utf-8')).version.should.equal('6.4.0')
JSON.parse(fs.readFileSync('package.json', 'utf-8')).version.should.equal('6.4.0')
JSON.parse(fs.readFileSync('package-lock.json', 'utf-8')).version.should.equal('6.4.0')
})

it('bumps version # in npm-shrinkwrap.json', async function () {
mock({
bump: 'minor',
Expand Down
3 changes: 3 additions & 0 deletions test/mocks/manifest-6.3.1.json
@@ -0,0 +1,3 @@
{
"version": "6.3.1"
}

0 comments on commit 2785023

Please sign in to comment.