Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: keithamus/sort-package-json
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.32.0
Choose a base ref
...
head repository: keithamus/sort-package-json
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.32.1
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Dec 28, 2019

  1. fix: only sort plain object (#100)

    fisker authored and keithamus committed Dec 28, 2019

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    b3f20ba View commit details
Showing with 26 additions and 11 deletions.
  1. +13 −11 index.js
  2. +13 −0 test.js
24 changes: 13 additions & 11 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
#!/usr/bin/env node
const _sortObjectKeys = require('sort-object-keys')
const sortObjectKeys = require('sort-object-keys')
const detectIndent = require('detect-indent')
const detectNewline = require('detect-newline').graceful
const globby = require('globby')
const sortObjectKeys = comp => x => _sortObjectKeys(x, comp)

const onArray = fn => x => (Array.isArray(x) ? fn(x) : x)
const uniq = onArray(xs => xs.filter((x, i) => i === xs.indexOf(x)))
const isPlainObject = x =>
x && Object.prototype.toString.call(x) === '[object Object]'
const onObject = fn => x => (isPlainObject(x) ? fn(x) : x)
const sortObjectBy = comparator => onObject(sortObjectKeys(comparator))
const sortObject = onObject(sortObjectKeys())
const sortObjectBy = comparator => onObject(x => sortObjectKeys(x, comparator))
const sortObject = sortObjectBy()
const sortURLObject = sortObjectBy(['type', 'url'])
const sortAuthorObject = sortObjectBy(['name', 'email', 'url'])
const sortDirectories = sortObjectBy(['lib', 'bin', 'man', 'doc', 'example'])
@@ -160,15 +159,18 @@ function editStringJSON(json, over) {
}

function sortPackageJson(jsonIsh, options = {}) {
return editStringJSON(jsonIsh, json => {
const newJson = sortObjectKeys(options.sortOrder || sortOrder)(json)
return editStringJSON(
jsonIsh,
onObject(json => {
const newJson = sortObjectKeys(json, options.sortOrder || sortOrder)

for (const { key, over } of fields) {
if (over && newJson[key]) newJson[key] = over(newJson[key])
}
for (const { key, over } of fields) {
if (over && newJson[key]) newJson[key] = over(newJson[key])
}

return newJson
})
return newJson
}),
)
}

module.exports = sortPackageJson
13 changes: 13 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
@@ -134,6 +134,19 @@ fs.readFile('./package.json', 'utf8', (error, contents) => {
sortPackageJson('{\r\n "foo": "bar"\n}\n'),
'{\n "foo": "bar"\n}\n',
)

const array = ['foo', 'bar']
const string = JSON.stringify(array)
assert.strictEqual(
sortPackageJson(array),
array,
'should not sort object that is not plain object',
)
assert.strictEqual(
sortPackageJson(string),
string,
'should not sort object that is not plain object',
)
})

// fields tests