You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'node_install_npmis in turn set bynode/configure.py`
parser.add_argument('--without-npm',
action='store_true',
dest='without_npm',
default=None,
help='do not install the bundled npm (package manager)')
...
o['variables']['node_install_npm'] =b(notoptions.without_npm)
This has the side-effect that when node is built w/o npm (configure.py --without-npm), then corepack is deselected as well. Ideally, corepack should sit behind its own configure flag (configure.py --without-corepack) instead.
The text was updated successfully, but these errors were encountered:
Currently, corepack sits behind
node_install_npm
innode/tools/install.py
'node_install_npm
is in turn set by
node/configure.py`This has the side-effect that when node is built w/o npm (
configure.py --without-npm
), then corepack is deselected as well. Ideally, corepack should sit behind its own configure flag (configure.py --without-corepack
) instead.The text was updated successfully, but these errors were encountered: