mirror of
https://git.yoctoproject.org/poky
synced 2026-07-15 15:37:03 +00:00
devtool: npm: rename npm command line options
This commit renames the '--fetch-dev' option into '--npm-dev' as it is a npm only option. (From OE-Core rev: 2b75cc848ceebee4067788a621299bfd5fb62231) Signed-off-by: Jean-Marie LEMETAYER <jean-marie.lemetayer@savoirfairelinux.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4662963b2c
commit
3a8a675825
@@ -714,10 +714,8 @@ def create_recipe(args):
|
||||
lines_after.append('INSANE_SKIP_${PN} += "already-stripped"')
|
||||
lines_after.append('')
|
||||
|
||||
if args.fetch_dev:
|
||||
extravalues['fetchdev'] = True
|
||||
else:
|
||||
extravalues['fetchdev'] = None
|
||||
if args.npm_dev:
|
||||
extravalues['NPM_INSTALL_DEV'] = 1
|
||||
|
||||
# Find all plugins that want to register handlers
|
||||
logger.debug('Loading recipe handlers')
|
||||
@@ -1313,7 +1311,7 @@ def register_commands(subparsers):
|
||||
group.add_argument('-S', '--srcrev', help='Source revision to fetch if fetching from an SCM such as git (default latest)')
|
||||
parser_create.add_argument('-B', '--srcbranch', help='Branch in source repository if fetching from an SCM such as git (default master)')
|
||||
parser_create.add_argument('--keep-temp', action="store_true", help='Keep temporary directory (for debugging)')
|
||||
parser_create.add_argument('--fetch-dev', action="store_true", help='For npm, also fetch devDependencies')
|
||||
parser_create.add_argument('--npm-dev', action="store_true", help='For npm, also fetch devDependencies')
|
||||
parser_create.add_argument('--devtool', action="store_true", help=argparse.SUPPRESS)
|
||||
parser_create.add_argument('--mirrors', action="store_true", help='Enable PREMIRRORS and MIRRORS for source tree fetching (disabled by default).')
|
||||
parser_create.set_defaults(func=create_recipe)
|
||||
|
||||
Reference in New Issue
Block a user