Remove command-line-args dependency

This commit is contained in:
advplyr 2022-07-06 18:56:13 -05:00
parent 954cf3e14e
commit 4e1aacb44f
4 changed files with 1400 additions and 36 deletions

View file

@ -6,7 +6,7 @@ const optionDefinitions = [
{ name: 'source', alias: 's', type: String }
]
const commandLineArgs = require('command-line-args')
const commandLineArgs = require('./server/libs/commandLineArgs')
const options = commandLineArgs(optionDefinitions)
const Path = require('path')