LearnNewsExamplesServices
Frontmatter
id604
titlebuild programs: simplify the use of commander
stateClosed
labels
enhancement
assigneestobiu
createdAtMay 23, 2020, 3:18 PM
updatedAtMay 23, 2020, 3:32 PM
githubUrlhttps://github.com/neomjs/neo/issues/604
authortobiu
commentsCount0
parentIssuenull
subIssues[]
subIssuesCompleted0
subIssuesTotal0
blockedBy[]
blocking[]
closedAtMay 23, 2020, 3:32 PM

build programs: simplify the use of commander

tobiu
tobiu commented on May 23, 2020, 3:18 PM

current:

commander = require('commander')
//...
const program = new commander.Command(programName)

new:

{ program } = require('commander')
//...
program
    .name(programName)
tobiu added the enhancement label on May 23, 2020, 3:18 PM
tobiu assigned to @tobiu on May 23, 2020, 3:18 PM
tobiu referenced in commit 34dd1c5 - "build programs: simplify the use of commander #604" on May 23, 2020, 3:28 PM
tobiu closed this issue on May 23, 2020, 3:32 PM