Skip to content

Commit

Permalink
Refactor test messages and cliOptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
raineorshine committed Sep 11, 2020
1 parent 19a2f3e commit 708aac8
Show file tree
Hide file tree
Showing 9 changed files with 308 additions and 307 deletions.
2 changes: 1 addition & 1 deletion bin/build.js
@@ -1,7 +1,7 @@
const fs = require('fs')
const path = require('path')
const spawn = require('spawn-please')
const { cliOptions } = require('../lib/constants')
const cliOptions = require('../lib/cli-options')

/** Extracts CLI options from the bin output. */
const readOptions = async () => {
Expand Down
2 changes: 1 addition & 1 deletion bin/cli.js
Expand Up @@ -7,7 +7,7 @@ const updateNotifier = require('update-notifier')
const _ = require('lodash')
const ncu = require('../lib/npm-check-updates')
const pkg = require('../package.json')
const { cliOptions } = require('../lib/constants')
const cliOptions = require('../lib/cli-options')

// check if a new version of ncu is available and print an update notification
const notifier = updateNotifier({ pkg })
Expand Down
147 changes: 147 additions & 0 deletions lib/cli-options.js
@@ -0,0 +1,147 @@
// store CLI options separately from bin file so that they can be used to build type definitions
const cliOptions = [
{
name: '--concurrency <n>',
description: 'Max number of concurrent HTTP requests to registry.',
parse: s => parseInt(s, 10),
default: 8
},
{
name: '--configFilePath <path>',
description: 'Directory of .ncurc config file (default: directory of `packageFile`).'
},
{
name: '--configFileName <filename>',
description: 'Config file name (default: .ncurc.{json,yml,js})'
},
{
name: '--cwd <path>',
description: 'Working directory in which npm will be executed.'
},
{
name: '--dep <dep>',
description: 'Check one or more sections of dependencies only: prod, dev, peer, optional, bundle (comma-delimited).'
},
{
name: '--deprecated',
description: 'Include deprecated packages.'
},
{
name: '--doctor',
description: 'Iteratively installs upgrades and runs tests to identify breaking upgrades. Run "ncu --doctor" for detailed help. Add "-u" to execute.',
},
{
name: '--enginesNode',
description: 'Include only packages that satisfy engines.node as specified in the package file.'
},
{
name: '-e, --errorLevel <n>',
description: 'Set the error level. 1: exits with error code 0 if no errors occur. 2: exits with error code 0 if no packages need updating (useful for continuous integration).',
parse: s => parseInt(s, 10),
default: 1
},
{
name: '-f, --filter <matches>',
description: 'Include only package names matching the given string, comma-or-space-delimited list, or /regex/.',
type: 'string | string[] | RegExp'
},
{
name: '-g, --global',
description: 'Check global packages instead of in the current project.'
},
{
name: '--greatest',
description: 'DEPRECATED. Renamed to "--target greatest".'
},
{
name: '-i, --interactive',
description: 'Enable interactive prompts for each dependency; implies -u unless one of the json options are set,'
},
{
// program.json is set to true in programInit if any options that begin with 'json' are true
name: '-j, --jsonAll',
description: 'Output new package file instead of human-readable message.'
},
{
name: '--jsonDeps',
description: 'Like `jsonAll` but only lists `dependencies`, `devDependencies`, `optionalDependencies`, etc of the new package data.'
},
{
name: '--jsonUpgraded',
description: 'Output upgraded dependencies in json.'
},
{
name: '-l, --loglevel <n>',
description: 'Amount to log: silent, error, minimal, warn, info, verbose, silly.',
default: 'warn'
},
{
name: '-m, --minimal',
description: 'Do not upgrade newer versions that are already satisfied by the version range according to semver.'
},
{
name: '-n, --newest',
description: 'DEPRECATED. Renamed to "--target newest".'
},
{
name: '-p, --packageManager <name>',
description: 'npm, yarn',
default: 'npm'
},
{
name: '-o, --ownerChanged',
description: 'Check if the package owner changed between current and upgraded version.',
},
{
name: '--packageData <string>',
description: 'Package file data (you can also use stdin).'
},
{
name: '--packageFile <path>',
description: 'Package file location (default: ./package.json).'
},
{
name: '--pre <n>',
description: 'Include -alpha, -beta, -rc. (default: 0; default with --newest and --greatest: 1).',
type: 'boolean'
},
{
name: '--prefix <path>',
description: 'Current working directory of npm.'
},
{
name: '-r, --registry <url>',
description: 'Third-party npm registry.'
},
{
name: '--removeRange',
description: 'Remove version ranges from the final package version.'
},
{
name: '--semverLevel <value>',
description: 'DEPRECATED. Renamed to --target.'
},
{
name: '-s, --silent',
description: 'Don\'t output anything (--loglevel silent).'
},
{
name: '-t, --target <value>',
description: 'Target version to upgrade to: latest, newest, greatest, minor, patch.'
},
{
name: '--timeout <ms>',
description: 'Global timeout in milliseconds. (default: no global timeout and 30 seconds per npm-registery-fetch).'
},
{
name: '-u, --upgrade',
description: 'Overwrite package file with upgraded versions instead of just outputting to console.'
},
{
name: '-x, --reject <matches>',
description: 'Exclude packages matching the given string, comma-or-space-delimited list, or /regex/.',
type: 'string | string[] | RegExp'
},
]

module.exports = cliOptions
148 changes: 1 addition & 147 deletions lib/constants.js
@@ -1,149 +1,3 @@
// store CLI options separately from bin file so that they can be used to build type definitions
const cliOptions = [
{
name: '--concurrency <n>',
description: 'Max number of concurrent HTTP requests to registry.',
parse: s => parseInt(s, 10),
default: 8
},
{
name: '--configFilePath <path>',
description: 'Directory of .ncurc config file (default: directory of `packageFile`).'
},
{
name: '--configFileName <filename>',
description: 'Config file name (default: .ncurc.{json,yml,js})'
},
{
name: '--cwd <path>',
description: 'Working directory in which npm will be executed.'
},
{
name: '--dep <dep>',
description: 'Check one or more sections of dependencies only: prod, dev, peer, optional, bundle (comma-delimited).'
},
{
name: '--deprecated',
description: 'Include deprecated packages.'
},
{
name: '--doctor',
description: 'Iteratively installs upgrades and runs tests to identify breaking upgrades. Run "ncu --doctor" for detailed help. Add "-u" to execute.',
},
{
name: '--enginesNode',
description: 'Include only packages that satisfy engines.node as specified in the package file.'
},
{
name: '-e, --errorLevel <n>',
description: 'Set the error level. 1: exits with error code 0 if no errors occur. 2: exits with error code 0 if no packages need updating (useful for continuous integration).',
parse: s => parseInt(s, 10),
default: 1
},
{
name: '-f, --filter <matches>',
description: 'Include only package names matching the given string, comma-or-space-delimited list, or /regex/.',
type: 'string | string[] | RegExp'
},
{
name: '-g, --global',
description: 'Check global packages instead of in the current project.'
},
{
name: '--greatest',
description: 'DEPRECATED. Renamed to "--target greatest".'
},
{
name: '-i, --interactive',
description: 'Enable interactive prompts for each dependency; implies -u unless one of the json options are set,'
},
{
// program.json is set to true in programInit if any options that begin with 'json' are true
name: '-j, --jsonAll',
description: 'Output new package file instead of human-readable message.'
},
{
name: '--jsonDeps',
description: 'Like `jsonAll` but only lists `dependencies`, `devDependencies`, `optionalDependencies`, etc of the new package data.'
},
{
name: '--jsonUpgraded',
description: 'Output upgraded dependencies in json.'
},
{
name: '-l, --loglevel <n>',
description: 'Amount to log: silent, error, minimal, warn, info, verbose, silly.',
default: 'warn'
},
{
name: '-m, --minimal',
description: 'Do not upgrade newer versions that are already satisfied by the version range according to semver.'
},
{
name: '-n, --newest',
description: 'DEPRECATED. Renamed to "--target newest".'
},
{
name: '-p, --packageManager <name>',
description: 'npm, yarn',
default: 'npm'
},
{
name: '-o, --ownerChanged',
description: 'Check if the package owner changed between current and upgraded version.',
},
{
name: '--packageData <string>',
description: 'Package file data (you can also use stdin).'
},
{
name: '--packageFile <path>',
description: 'Package file location (default: ./package.json).'
},
{
name: '--pre <n>',
description: 'Include -alpha, -beta, -rc. (default: 0; default with --newest and --greatest: 1).',
type: 'boolean'
},
{
name: '--prefix <path>',
description: 'Current working directory of npm.'
},
{
name: '-r, --registry <url>',
description: 'Third-party npm registry.'
},
{
name: '--removeRange',
description: 'Remove version ranges from the final package version.'
},
{
name: '--semverLevel <value>',
description: 'DEPRECATED. Renamed to --target.'
},
{
name: '-s, --silent',
description: 'Don\'t output anything (--loglevel silent).'
},
{
name: '-t, --target <value>',
description: 'Target version to upgrade to: latest, newest, greatest, minor, patch.'
},
{
name: '--timeout <ms>',
description: 'Global timeout in milliseconds. (default: no global timeout and 30 seconds per npm-registery-fetch).'
},
{
name: '-u, --upgrade',
description: 'Overwrite package file with upgraded versions instead of just outputting to console.'
},
{
name: '-x, --reject <matches>',
description: 'Exclude packages matching the given string, comma-or-space-delimited list, or /regex/.',
type: 'string | string[] | RegExp'
},
]

const supportedVersionTargets = ['latest', 'newest', 'greatest', 'minor', 'patch']

const doctorHelpText = `Usage: ncu --doctor [-u] [options]
Expand Down Expand Up @@ -183,4 +37,4 @@ npm run test
Saving partially upgraded package.json
`

module.exports = { cliOptions, doctorHelpText, supportedVersionTargets }
module.exports = { doctorHelpText, supportedVersionTargets }

0 comments on commit 708aac8

Please sign in to comment.