Saturday, June 04, 2022

[Maintainer Update] lang/node 16.15.1

Index: Makefile
===================================================================
RCS file: /cvs/ports/lang/node/Makefile,v
retrieving revision 1.100
diff -u -p -r1.100 Makefile
--- Makefile 18 Mar 2022 19:35:16 -0000 1.100
+++ Makefile 4 Jun 2022 13:26:19 -0000
@@ -5,11 +5,11 @@ USE_WXNEEDED = Yes

COMMENT = JavaScript runtime built on Chrome's V8 JavaScript engine

-NODE_VERSION = v16.14.2
+NODE_VERSION = v16.15.1
PLEDGE_VER = 1.1.2
DISTFILES = node-pledge-{}${PLEDGE_VER}.tar.gz:0 \
- ${DISTNAME}-headers.tar.gz \
- ${DISTNAME}.tar.gz
+ ${DISTNAME}-headers.tar.xz \
+ ${DISTNAME}.tar.xz

DISTNAME = node-${NODE_VERSION}
PKGNAME = ${DISTNAME:S/v//g}
@@ -45,6 +45,9 @@ BUILD_DEPENDS = sysutils/flock
RUN_DEPENDS = devel/gmake \
sysutils/flock

+# Needed to build js_native_api_v8_internals.h
+TEST_DEPENDS = devel/gtest
+
TEST_TARGET = test-only
CONFIGURE_STYLE = simple
CONFIGURE_SCRIPT = configure
@@ -82,7 +85,7 @@ EOPENSSL_INC = ${LOCALBASE}/include/eop

do-extract:
mkdir ${WRKSRC}; \
- tar -C ${WRKDIR} -zxf ${FULLDISTDIR}/${DISTNAME}.tar.gz && \
+ xzcat ${FULLDISTDIR}/${DISTNAME}.tar.xz | tar -C ${WRKDIR} -xf - && \
tar -C ${WRKSRC}/deps/npm/node_modules/ -zxf \
${FULLDISTDIR}/node-pledge-${PLEDGE_VER}.tar.gz && \
mv ${WRKSRC}/deps/npm/node_modules/node-pledge-${PLEDGE_VER} \
@@ -100,8 +103,8 @@ post-install:
${MODPY_BIN} ${MODPY_LIBDIR}/compileall.py \
${PREFIX}/lib/node_modules/npm/node_modules/node-gyp/update-gyp.py
${INSTALL_DATA_DIR} ${PREFIX}/share/node
- ${INSTALL_DATA} ${FULLDISTDIR}/${DISTNAME}-headers.tar.gz \
- ${PREFIX}/share/node/${DISTNAME}-headers.tar.gz
+ ${INSTALL_DATA} ${FULLDISTDIR}/${DISTNAME}-headers.tar.xz \
+ ${PREFIX}/share/node/${DISTNAME}-headers.tar.xz
ln -s ${TRUEPREFIX}/lib/node_modules/npm/bin/node-gyp-bin/node-gyp \
${PREFIX}/bin/node-gyp;
cd ${PREFIX}/lib/node_modules/npm/node_modules && for x in *; do \
Index: distinfo
===================================================================
RCS file: /cvs/ports/lang/node/distinfo,v
retrieving revision 1.58
diff -u -p -r1.58 distinfo
--- distinfo 18 Mar 2022 19:35:16 -0000 1.58
+++ distinfo 4 Jun 2022 13:26:19 -0000
@@ -1,6 +1,6 @@
-SHA256 (node-v16.14.2-headers.tar.gz) = UF4cKH5Vu47CXS4g19h6V7DCZm4apwZOBmGtdrYNtZQ=
-SHA256 (node-v16.14.2.tar.gz) = CCFw82LE2g6X86GJnj9eTJmLvCRbgDx3xqsROitcvV8=
+SHA256 (node-v16.15.1-headers.tar.xz) = NVNlHmMe5SxxfMlc8EVoPquAdBjKx9VbthjQp/HP4uE=
+SHA256 (node-v16.15.1.tar.xz) = 1OmdPB9pcREJpnUlVxBY5gCc3bwijn1yO4+0pFQWm30=
SHA256 (node-pledge-1.1.2.tar.gz) = zY/JcbZ32mmtqWXXNn3/9aTh7Y3F6fAAaADDA8SYwEk=
-SIZE (node-v16.14.2-headers.tar.gz) = 562716
-SIZE (node-v16.14.2.tar.gz) = 64999385
+SIZE (node-v16.15.1-headers.tar.xz) = 385424
+SIZE (node-v16.15.1.tar.xz) = 34618208
SIZE (node-pledge-1.1.2.tar.gz) = 3155
Index: patches/patch-common_gypi
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-common_gypi,v
retrieving revision 1.19
diff -u -p -r1.19 patch-common_gypi
--- patches/patch-common_gypi 11 Mar 2022 19:29:08 -0000 1.19
+++ patches/patch-common_gypi 4 Jun 2022 13:26:19 -0000
@@ -1,7 +1,7 @@
Index: common.gypi
--- common.gypi.orig
+++ common.gypi
-@@ -409,7 +409,9 @@
+@@ -412,7 +412,9 @@
}],
['OS=="openbsd"', {
'cflags': [ '-I/usr/local/include' ],
Index: patches/patch-lib_internal_modules_cjs_loader_js
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-lib_internal_modules_cjs_loader_js,v
retrieving revision 1.4
diff -u -p -r1.4 patch-lib_internal_modules_cjs_loader_js
--- patches/patch-lib_internal_modules_cjs_loader_js 18 Mar 2022 19:35:16 -0000 1.4
+++ patches/patch-lib_internal_modules_cjs_loader_js 4 Jun 2022 13:26:19 -0000
@@ -1,7 +1,7 @@
Index: lib/internal/modules/cjs/loader.js
--- lib/internal/modules/cjs/loader.js.orig
+++ lib/internal/modules/cjs/loader.js
-@@ -1238,7 +1238,10 @@ Module._initPaths = function() {
+@@ -1240,7 +1240,10 @@ Module._initPaths = function() {
path.resolve(process.execPath, '..') :
path.resolve(process.execPath, '..', '..');

Index: patches/patch-lib_net_js
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-lib_net_js,v
retrieving revision 1.1
diff -u -p -r1.1 patch-lib_net_js
--- patches/patch-lib_net_js 18 Mar 2022 19:33:42 -0000 1.1
+++ patches/patch-lib_net_js 4 Jun 2022 13:26:19 -0000
@@ -13,7 +13,7 @@ for "any address" but that's not really
Index: lib/net.js
--- lib/net.js.orig
+++ lib/net.js
-@@ -1292,22 +1292,12 @@ function setupListenHandle(address, port, addressType,
+@@ -1334,22 +1334,12 @@ function setupListenHandle(address, port, addressType,

let rval = null;

Index: patches/patch-node_gyp
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-node_gyp,v
retrieving revision 1.10
diff -u -p -r1.10 patch-node_gyp
--- patches/patch-node_gyp 11 Mar 2022 19:29:08 -0000 1.10
+++ patches/patch-node_gyp 4 Jun 2022 13:26:19 -0000
@@ -1,7 +1,7 @@
Index: node.gyp
--- node.gyp.orig
+++ node.gyp
-@@ -356,7 +356,7 @@
+@@ -357,7 +357,7 @@
'<(SHARED_INTERMEDIATE_DIR)' # for node_natives.h
],
'dependencies': [
@@ -10,7 +10,7 @@ Index: node.gyp
'deps/histogram/histogram.gyp:histogram',
'deps/uvwasi/uvwasi.gyp:uvwasi',
],
-@@ -1081,8 +1081,8 @@
+@@ -1082,8 +1082,8 @@

'dependencies': [
'<(node_lib_target_name)',
@@ -21,7 +21,7 @@ Index: node.gyp
'deps/histogram/histogram.gyp:histogram',
'deps/uvwasi/uvwasi.gyp:uvwasi',
'node_dtrace_header',
-@@ -1156,6 +1156,10 @@
+@@ -1157,6 +1157,10 @@
}],
['OS=="solaris"', {
'ldflags': [ '-I<(SHARED_INTERMEDIATE_DIR)' ]
Index: patches/patch-tools_v8_gypfiles_v8_gyp
===================================================================
RCS file: /cvs/ports/lang/node/patches/patch-tools_v8_gypfiles_v8_gyp,v
retrieving revision 1.2
diff -u -p -r1.2 patch-tools_v8_gypfiles_v8_gyp
--- patches/patch-tools_v8_gypfiles_v8_gyp 11 Mar 2022 19:29:08 -0000 1.2
+++ patches/patch-tools_v8_gypfiles_v8_gyp 4 Jun 2022 13:26:19 -0000
@@ -1,6 +1,7 @@
---- tools/v8_gypfiles/v8.gyp.orig Sat Jan 1 17:10:14 2022
-+++ tools/v8_gypfiles/v8.gyp Sat Jan 1 17:10:14 2022
-@@ -838,7 +838,7 @@
+Index: tools/v8_gypfiles/v8.gyp
+--- tools/v8_gypfiles/v8.gyp.orig
++++ tools/v8_gypfiles/v8.gyp
+@@ -796,7 +796,7 @@
}],
['v8_enable_webassembly==1', {
'conditions': [
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/lang/node/pkg/PLIST,v
retrieving revision 1.47
diff -u -p -r1.47 PLIST
--- pkg/PLIST 18 Mar 2022 19:35:16 -0000 1.47
+++ pkg/PLIST 4 Jun 2022 13:26:19 -0000
@@ -27,8 +27,37 @@ include/node/v8-version.h
include/node/v8.h
include/node/v8config.h
lib/node_modules/
+lib/node_modules/@colors/
+lib/node_modules/@colors/colors/
+lib/node_modules/@colors/colors/LICENSE
+lib/node_modules/@colors/colors/examples/
+lib/node_modules/@colors/colors/examples/normal-usage.js
+lib/node_modules/@colors/colors/examples/safe-string.js
+lib/node_modules/@colors/colors/index.d.ts
+lib/node_modules/@colors/colors/lib/
+lib/node_modules/@colors/colors/lib/colors.js
+lib/node_modules/@colors/colors/lib/custom/
+lib/node_modules/@colors/colors/lib/custom/trap.js
+lib/node_modules/@colors/colors/lib/custom/zalgo.js
+lib/node_modules/@colors/colors/lib/extendStringPrototype.js
+lib/node_modules/@colors/colors/lib/index.js
+lib/node_modules/@colors/colors/lib/maps/
+lib/node_modules/@colors/colors/lib/maps/america.js
+lib/node_modules/@colors/colors/lib/maps/rainbow.js
+lib/node_modules/@colors/colors/lib/maps/random.js
+lib/node_modules/@colors/colors/lib/maps/zebra.js
+lib/node_modules/@colors/colors/lib/styles.js
+lib/node_modules/@colors/colors/lib/system/
+lib/node_modules/@colors/colors/lib/system/has-flag.js
+lib/node_modules/@colors/colors/lib/system/supports-colors.js
+lib/node_modules/@colors/colors/package.json
+lib/node_modules/@colors/colors/safe.d.ts
+lib/node_modules/@colors/colors/safe.js
+lib/node_modules/@colors/colors/themes/
+lib/node_modules/@colors/colors/themes/generic-logging.js
lib/node_modules/@gar/
lib/node_modules/@gar/promisify/
+lib/node_modules/@gar/promisify/LICENSE.md
lib/node_modules/@gar/promisify/index.js
lib/node_modules/@gar/promisify/package.json
lib/node_modules/@isaacs/
@@ -87,6 +116,7 @@ lib/node_modules/@npmcli/arborist/lib/in
lib/node_modules/@npmcli/arborist/lib/link.js
lib/node_modules/@npmcli/arborist/lib/node.js
lib/node_modules/@npmcli/arborist/lib/optional-set.js
+lib/node_modules/@npmcli/arborist/lib/override-resolves.js
lib/node_modules/@npmcli/arborist/lib/override-set.js
lib/node_modules/@npmcli/arborist/lib/peer-entry-sets.js
lib/node_modules/@npmcli/arborist/lib/place-dep.js
@@ -107,7 +137,8 @@ lib/node_modules/@npmcli/arborist/lib/ya
lib/node_modules/@npmcli/arborist/package.json
lib/node_modules/@npmcli/ci-detect/
lib/node_modules/@npmcli/ci-detect/LICENSE
-lib/node_modules/@npmcli/ci-detect/index.js
+lib/node_modules/@npmcli/ci-detect/lib/
+lib/node_modules/@npmcli/ci-detect/lib/index.js
lib/node_modules/@npmcli/ci-detect/package.json
lib/node_modules/@npmcli/config/
lib/node_modules/@npmcli/config/LICENSE
@@ -116,7 +147,6 @@ lib/node_modules/@npmcli/config/lib/env-
lib/node_modules/@npmcli/config/lib/index.js
lib/node_modules/@npmcli/config/lib/nerf-dart.js
lib/node_modules/@npmcli/config/lib/parse-field.js
-lib/node_modules/@npmcli/config/lib/proc-log.js
lib/node_modules/@npmcli/config/lib/set-envs.js
lib/node_modules/@npmcli/config/lib/type-defs.js
lib/node_modules/@npmcli/config/lib/type-description.js
@@ -124,7 +154,8 @@ lib/node_modules/@npmcli/config/lib/umas
lib/node_modules/@npmcli/config/package.json
lib/node_modules/@npmcli/disparity-colors/
lib/node_modules/@npmcli/disparity-colors/LICENSE
-lib/node_modules/@npmcli/disparity-colors/index.js
+lib/node_modules/@npmcli/disparity-colors/lib/
+lib/node_modules/@npmcli/disparity-colors/lib/index.js
lib/node_modules/@npmcli/disparity-colors/package.json
lib/node_modules/@npmcli/fs/
lib/node_modules/@npmcli/fs/LICENSE.md
@@ -135,6 +166,7 @@ lib/node_modules/@npmcli/fs/lib/common/f
lib/node_modules/@npmcli/fs/lib/common/file-url-to-path/polyfill.js
lib/node_modules/@npmcli/fs/lib/common/get-options.js
lib/node_modules/@npmcli/fs/lib/common/node.js
+lib/node_modules/@npmcli/fs/lib/common/owner-sync.js
lib/node_modules/@npmcli/fs/lib/common/owner.js
lib/node_modules/@npmcli/fs/lib/copy-file.js
lib/node_modules/@npmcli/fs/lib/cp/
@@ -151,6 +183,8 @@ lib/node_modules/@npmcli/fs/lib/mkdtemp.
lib/node_modules/@npmcli/fs/lib/rm/
lib/node_modules/@npmcli/fs/lib/rm/index.js
lib/node_modules/@npmcli/fs/lib/rm/polyfill.js
+lib/node_modules/@npmcli/fs/lib/with-owner-sync.js
+lib/node_modules/@npmcli/fs/lib/with-owner.js
lib/node_modules/@npmcli/fs/lib/with-temp-dir.js
lib/node_modules/@npmcli/fs/lib/write-file.js
lib/node_modules/@npmcli/fs/package.json
@@ -166,7 +200,6 @@ lib/node_modules/@npmcli/git/lib/is.js
lib/node_modules/@npmcli/git/lib/lines-to-revs.js
lib/node_modules/@npmcli/git/lib/make-error.js
lib/node_modules/@npmcli/git/lib/opts.js
-lib/node_modules/@npmcli/git/lib/proc-log.js
lib/node_modules/@npmcli/git/lib/revs.js
lib/node_modules/@npmcli/git/lib/spawn.js
lib/node_modules/@npmcli/git/lib/utils.js
@@ -192,7 +225,8 @@ lib/node_modules/@npmcli/metavuln-calcul
lib/node_modules/@npmcli/metavuln-calculator/package.json
lib/node_modules/@npmcli/move-file/
lib/node_modules/@npmcli/move-file/LICENSE.md
-lib/node_modules/@npmcli/move-file/index.js
+lib/node_modules/@npmcli/move-file/lib/
+lib/node_modules/@npmcli/move-file/lib/index.js
lib/node_modules/@npmcli/move-file/package.json
lib/node_modules/@npmcli/name-from-folder/
lib/node_modules/@npmcli/name-from-folder/LICENSE
@@ -212,7 +246,8 @@ lib/node_modules/@npmcli/package-json/li
lib/node_modules/@npmcli/package-json/package.json
lib/node_modules/@npmcli/promise-spawn/
lib/node_modules/@npmcli/promise-spawn/LICENSE
-lib/node_modules/@npmcli/promise-spawn/index.js
+lib/node_modules/@npmcli/promise-spawn/lib/
+lib/node_modules/@npmcli/promise-spawn/lib/index.js
lib/node_modules/@npmcli/promise-spawn/package.json
lib/node_modules/@npmcli/run-script/
lib/node_modules/@npmcli/run-script/LICENSE
@@ -279,6 +314,7 @@ lib/node_modules/aggregate-error/license
lib/node_modules/aggregate-error/package.json
lib/node_modules/aggregate-error/readme.md
lib/node_modules/ansi-regex/
+lib/node_modules/ansi-regex/index.d.ts
lib/node_modules/ansi-regex/index.js
lib/node_modules/ansi-regex/license
lib/node_modules/ansi-regex/package.json
@@ -289,14 +325,6 @@ lib/node_modules/ansi-styles/index.js
lib/node_modules/ansi-styles/license
lib/node_modules/ansi-styles/package.json
lib/node_modules/ansi-styles/readme.md
-lib/node_modules/ansicolors/
-lib/node_modules/ansicolors/LICENSE
-lib/node_modules/ansicolors/ansicolors.js
-lib/node_modules/ansicolors/package.json
-lib/node_modules/ansistyles/
-lib/node_modules/ansistyles/LICENSE
-lib/node_modules/ansistyles/ansistyles.js
-lib/node_modules/ansistyles/package.json
lib/node_modules/aproba/
lib/node_modules/aproba/LICENSE
lib/node_modules/aproba/index.js
@@ -361,16 +389,12 @@ lib/node_modules/brace-expansion/LICENSE
lib/node_modules/brace-expansion/index.js
lib/node_modules/brace-expansion/package.json
lib/node_modules/builtins/
-lib/node_modules/builtins/History.md
lib/node_modules/builtins/License
lib/node_modules/builtins/Readme.md
-lib/node_modules/builtins/builtins.json
+lib/node_modules/builtins/index.js
lib/node_modules/builtins/package.json
-lib/node_modules/builtins/test.js
lib/node_modules/cacache/
lib/node_modules/cacache/LICENSE.md
-lib/node_modules/cacache/get.js
-lib/node_modules/cacache/index.js
lib/node_modules/cacache/lib/
lib/node_modules/cacache/lib/content/
lib/node_modules/cacache/lib/content/path.js
@@ -378,19 +402,18 @@ lib/node_modules/cacache/lib/content/rea
lib/node_modules/cacache/lib/content/rm.js
lib/node_modules/cacache/lib/content/write.js
lib/node_modules/cacache/lib/entry-index.js
+lib/node_modules/cacache/lib/get.js
+lib/node_modules/cacache/lib/index.js
lib/node_modules/cacache/lib/memoization.js
+lib/node_modules/cacache/lib/put.js
+lib/node_modules/cacache/lib/rm.js
lib/node_modules/cacache/lib/util/
-lib/node_modules/cacache/lib/util/disposer.js
lib/node_modules/cacache/lib/util/fix-owner.js
lib/node_modules/cacache/lib/util/hash-to-segments.js
lib/node_modules/cacache/lib/util/move-file.js
lib/node_modules/cacache/lib/util/tmp.js
lib/node_modules/cacache/lib/verify.js
-lib/node_modules/cacache/ls.js
lib/node_modules/cacache/package.json
-lib/node_modules/cacache/put.js
-lib/node_modules/cacache/rm.js
-lib/node_modules/cacache/verify.js
lib/node_modules/chalk/
lib/node_modules/chalk/index.d.ts
lib/node_modules/chalk/license
@@ -419,61 +442,16 @@ lib/node_modules/cli-columns/
lib/node_modules/cli-columns/LICENSE
lib/node_modules/cli-columns/color.js
lib/node_modules/cli-columns/index.js
-lib/node_modules/cli-columns/node_modules/
-lib/node_modules/cli-columns/node_modules/ansi-regex/
-lib/node_modules/cli-columns/node_modules/ansi-regex/index.d.ts
-lib/node_modules/cli-columns/node_modules/ansi-regex/index.js
-lib/node_modules/cli-columns/node_modules/ansi-regex/license
-lib/node_modules/cli-columns/node_modules/ansi-regex/package.json
-lib/node_modules/cli-columns/node_modules/is-fullwidth-code-point/
-lib/node_modules/cli-columns/node_modules/is-fullwidth-code-point/index.d.ts
-lib/node_modules/cli-columns/node_modules/is-fullwidth-code-point/index.js
-lib/node_modules/cli-columns/node_modules/is-fullwidth-code-point/license
-lib/node_modules/cli-columns/node_modules/is-fullwidth-code-point/package.json
-lib/node_modules/cli-columns/node_modules/string-width/
-lib/node_modules/cli-columns/node_modules/string-width/index.d.ts
-lib/node_modules/cli-columns/node_modules/string-width/index.js
-lib/node_modules/cli-columns/node_modules/string-width/license
-lib/node_modules/cli-columns/node_modules/string-width/package.json
-lib/node_modules/cli-columns/node_modules/strip-ansi/
-lib/node_modules/cli-columns/node_modules/strip-ansi/index.d.ts
-lib/node_modules/cli-columns/node_modules/strip-ansi/index.js
-lib/node_modules/cli-columns/node_modules/strip-ansi/license
-lib/node_modules/cli-columns/node_modules/strip-ansi/package.json
lib/node_modules/cli-columns/package.json
lib/node_modules/cli-columns/test.js
lib/node_modules/cli-table3/
lib/node_modules/cli-table3/LICENSE
lib/node_modules/cli-table3/index.d.ts
lib/node_modules/cli-table3/index.js
-lib/node_modules/cli-table3/node_modules/
-lib/node_modules/cli-table3/node_modules/ansi-regex/
-lib/node_modules/cli-table3/node_modules/ansi-regex/index.d.ts
-lib/node_modules/cli-table3/node_modules/ansi-regex/index.js
-lib/node_modules/cli-table3/node_modules/ansi-regex/license
-lib/node_modules/cli-table3/node_modules/ansi-regex/package.json
-lib/node_modules/cli-table3/node_modules/ansi-regex/readme.md
-lib/node_modules/cli-table3/node_modules/is-fullwidth-code-point/
-lib/node_modules/cli-table3/node_modules/is-fullwidth-code-point/index.d.ts
-lib/node_modules/cli-table3/node_modules/is-fullwidth-code-point/index.js
-lib/node_modules/cli-table3/node_modules/is-fullwidth-code-point/license
-lib/node_modules/cli-table3/node_modules/is-fullwidth-code-point/package.json
-lib/node_modules/cli-table3/node_modules/is-fullwidth-code-point/readme.md
-lib/node_modules/cli-table3/node_modules/string-width/
-lib/node_modules/cli-table3/node_modules/string-width/index.d.ts
-lib/node_modules/cli-table3/node_modules/string-width/index.js
-lib/node_modules/cli-table3/node_modules/string-width/license
-lib/node_modules/cli-table3/node_modules/string-width/package.json
-lib/node_modules/cli-table3/node_modules/string-width/readme.md
-lib/node_modules/cli-table3/node_modules/strip-ansi/
-lib/node_modules/cli-table3/node_modules/strip-ansi/index.d.ts
-lib/node_modules/cli-table3/node_modules/strip-ansi/index.js
-lib/node_modules/cli-table3/node_modules/strip-ansi/license
-lib/node_modules/cli-table3/node_modules/strip-ansi/package.json
-lib/node_modules/cli-table3/node_modules/strip-ansi/readme.md
lib/node_modules/cli-table3/package.json
lib/node_modules/cli-table3/src/
lib/node_modules/cli-table3/src/cell.js
+lib/node_modules/cli-table3/src/debug.js
lib/node_modules/cli-table3/src/layout-manager.js
lib/node_modules/cli-table3/src/table.js
lib/node_modules/cli-table3/src/utils.js
@@ -484,8 +462,8 @@ lib/node_modules/clone/clone.js
lib/node_modules/clone/package.json
lib/node_modules/cmd-shim/
lib/node_modules/cmd-shim/LICENSE
-lib/node_modules/cmd-shim/index.js
lib/node_modules/cmd-shim/lib/
+lib/node_modules/cmd-shim/lib/index.js
lib/node_modules/cmd-shim/lib/to-batch-syntax.js
lib/node_modules/cmd-shim/package.json
lib/node_modules/color-convert/
@@ -505,33 +483,6 @@ lib/node_modules/color-support/bin.js
lib/node_modules/color-support/browser.js
lib/node_modules/color-support/index.js
lib/node_modules/color-support/package.json
-lib/node_modules/colors/
-lib/node_modules/colors/LICENSE
-lib/node_modules/colors/examples/
-lib/node_modules/colors/examples/normal-usage.js
-lib/node_modules/colors/examples/safe-string.js
-lib/node_modules/colors/index.d.ts
-lib/node_modules/colors/lib/
-lib/node_modules/colors/lib/colors.js
-lib/node_modules/colors/lib/custom/
-lib/node_modules/colors/lib/custom/trap.js
-lib/node_modules/colors/lib/custom/zalgo.js
-lib/node_modules/colors/lib/extendStringPrototype.js
-lib/node_modules/colors/lib/index.js
-lib/node_modules/colors/lib/maps/
-lib/node_modules/colors/lib/maps/america.js
-lib/node_modules/colors/lib/maps/rainbow.js
-lib/node_modules/colors/lib/maps/random.js
-lib/node_modules/colors/lib/maps/zebra.js
-lib/node_modules/colors/lib/styles.js
-lib/node_modules/colors/lib/system/
-lib/node_modules/colors/lib/system/has-flag.js
-lib/node_modules/colors/lib/system/supports-colors.js
-lib/node_modules/colors/package.json
-lib/node_modules/colors/safe.d.ts
-lib/node_modules/colors/safe.js
-lib/node_modules/colors/themes/
-lib/node_modules/colors/themes/generic-logging.js
lib/node_modules/columnify/
lib/node_modules/columnify/LICENSE
lib/node_modules/columnify/Makefile
@@ -744,7 +695,6 @@ lib/node_modules/gauge/
lib/node_modules/gauge/LICENSE.md
lib/node_modules/gauge/lib/
lib/node_modules/gauge/lib/base-theme.js
-lib/node_modules/gauge/lib/demo.js
lib/node_modules/gauge/lib/error.js
lib/node_modules/gauge/lib/has-color.js
lib/node_modules/gauge/lib/index.js
@@ -759,27 +709,6 @@ lib/node_modules/gauge/lib/template-item
lib/node_modules/gauge/lib/theme-set.js
lib/node_modules/gauge/lib/themes.js
lib/node_modules/gauge/lib/wide-truncate.js
-lib/node_modules/gauge/node_modules/
-lib/node_modules/gauge/node_modules/ansi-regex/
-lib/node_modules/gauge/node_modules/ansi-regex/index.d.ts
-lib/node_modules/gauge/node_modules/ansi-regex/index.js
-lib/node_modules/gauge/node_modules/ansi-regex/license
-lib/node_modules/gauge/node_modules/ansi-regex/package.json
-lib/node_modules/gauge/node_modules/is-fullwidth-code-point/
-lib/node_modules/gauge/node_modules/is-fullwidth-code-point/index.d.ts
-lib/node_modules/gauge/node_modules/is-fullwidth-code-point/index.js
-lib/node_modules/gauge/node_modules/is-fullwidth-code-point/license
-lib/node_modules/gauge/node_modules/is-fullwidth-code-point/package.json
-lib/node_modules/gauge/node_modules/string-width/
-lib/node_modules/gauge/node_modules/string-width/index.d.ts
-lib/node_modules/gauge/node_modules/string-width/index.js
-lib/node_modules/gauge/node_modules/string-width/license
-lib/node_modules/gauge/node_modules/string-width/package.json
-lib/node_modules/gauge/node_modules/strip-ansi/
-lib/node_modules/gauge/node_modules/strip-ansi/index.d.ts
-lib/node_modules/gauge/node_modules/strip-ansi/index.js
-lib/node_modules/gauge/node_modules/strip-ansi/license
-lib/node_modules/gauge/node_modules/strip-ansi/package.json
lib/node_modules/gauge/package.json
lib/node_modules/glob/
lib/node_modules/glob/LICENSE
@@ -811,9 +740,10 @@ lib/node_modules/has/src/
lib/node_modules/has/src/index.js
lib/node_modules/hosted-git-info/
lib/node_modules/hosted-git-info/LICENSE
-lib/node_modules/hosted-git-info/git-host-info.js
-lib/node_modules/hosted-git-info/git-host.js
-lib/node_modules/hosted-git-info/index.js
+lib/node_modules/hosted-git-info/lib/
+lib/node_modules/hosted-git-info/lib/git-host-info.js
+lib/node_modules/hosted-git-info/lib/git-host.js
+lib/node_modules/hosted-git-info/lib/index.js
lib/node_modules/hosted-git-info/package.json
lib/node_modules/http-cache-semantics/
lib/node_modules/http-cache-semantics/LICENSE
@@ -876,7 +806,8 @@ lib/node_modules/iconv-lite/lib/streams.
lib/node_modules/iconv-lite/package.json
lib/node_modules/ignore-walk/
lib/node_modules/ignore-walk/LICENSE
-lib/node_modules/ignore-walk/index.js
+lib/node_modules/ignore-walk/lib/
+lib/node_modules/ignore-walk/lib/index.js
lib/node_modules/ignore-walk/package.json
lib/node_modules/imurmurhash/
lib/node_modules/imurmurhash/imurmurhash.js
@@ -903,7 +834,8 @@ lib/node_modules/inherits/inherits_brows
lib/node_modules/inherits/package.json
lib/node_modules/ini/
lib/node_modules/ini/LICENSE
-lib/node_modules/ini/ini.js
+lib/node_modules/ini/lib/
+lib/node_modules/ini/lib/ini.js
lib/node_modules/ini/package.json
lib/node_modules/init-package-json/
lib/node_modules/init-package-json/LICENSE.md
@@ -932,6 +864,7 @@ lib/node_modules/is-core-module/core.jso
lib/node_modules/is-core-module/index.js
lib/node_modules/is-core-module/package.json
lib/node_modules/is-fullwidth-code-point/
+lib/node_modules/is-fullwidth-code-point/index.d.ts
lib/node_modules/is-fullwidth-code-point/index.js
lib/node_modules/is-fullwidth-code-point/license
lib/node_modules/is-fullwidth-code-point/package.json
@@ -941,11 +874,6 @@ lib/node_modules/is-lambda/LICENSE
lib/node_modules/is-lambda/index.js
lib/node_modules/is-lambda/package.json
lib/node_modules/is-lambda/test.js
-lib/node_modules/is-typedarray/
-lib/node_modules/is-typedarray/LICENSE.md
-lib/node_modules/is-typedarray/index.js
-lib/node_modules/is-typedarray/package.json
-lib/node_modules/is-typedarray/test.js
lib/node_modules/isexe/
lib/node_modules/isexe/LICENSE
lib/node_modules/isexe/index.js
@@ -973,8 +901,10 @@ lib/node_modules/jsonparse/samplejson/ba
lib/node_modules/just-diff/
lib/node_modules/just-diff-apply/
lib/node_modules/just-diff-apply/LICENSE
+lib/node_modules/just-diff-apply/index.d.ts
lib/node_modules/just-diff-apply/index.js
lib/node_modules/just-diff-apply/index.mjs
+lib/node_modules/just-diff-apply/index.tests.ts
lib/node_modules/just-diff-apply/package.json
lib/node_modules/just-diff-apply/rollup.config.js
lib/node_modules/just-diff/LICENSE
@@ -1009,7 +939,6 @@ lib/node_modules/libnpmexec/lib/file-exi
lib/node_modules/libnpmexec/lib/get-bin-from-manifest.js
lib/node_modules/libnpmexec/lib/index.js
lib/node_modules/libnpmexec/lib/is-windows.js
-lib/node_modules/libnpmexec/lib/manifest-missing.js
lib/node_modules/libnpmexec/lib/no-tty.js
lib/node_modules/libnpmexec/lib/run-script.js
lib/node_modules/libnpmexec/package.json
@@ -1064,7 +993,6 @@ lib/node_modules/libnpmversion/lib/
lib/node_modules/libnpmversion/lib/commit.js
lib/node_modules/libnpmversion/lib/enforce-clean.js
lib/node_modules/libnpmversion/lib/index.js
-lib/node_modules/libnpmversion/lib/proc-log.js
lib/node_modules/libnpmversion/lib/read-json.js
lib/node_modules/libnpmversion/lib/retrieve-tag.js
lib/node_modules/libnpmversion/lib/tag.js
@@ -1085,18 +1013,17 @@ lib/node_modules/make-fetch-happen/lib/c
lib/node_modules/make-fetch-happen/lib/cache/index.js
lib/node_modules/make-fetch-happen/lib/cache/key.js
lib/node_modules/make-fetch-happen/lib/cache/policy.js
+lib/node_modules/make-fetch-happen/lib/dns.js
lib/node_modules/make-fetch-happen/lib/fetch.js
lib/node_modules/make-fetch-happen/lib/index.js
lib/node_modules/make-fetch-happen/lib/options.js
+lib/node_modules/make-fetch-happen/lib/pipeline.js
lib/node_modules/make-fetch-happen/lib/remote.js
-lib/node_modules/make-fetch-happen/node_modules/
-lib/node_modules/make-fetch-happen/node_modules/lru-cache/
-lib/node_modules/make-fetch-happen/node_modules/lru-cache/LICENSE
-lib/node_modules/make-fetch-happen/node_modules/lru-cache/index.js
-lib/node_modules/make-fetch-happen/node_modules/lru-cache/package.json
lib/node_modules/make-fetch-happen/package.json
lib/node_modules/minimatch/
lib/node_modules/minimatch/LICENSE
+lib/node_modules/minimatch/lib/
+lib/node_modules/minimatch/lib/path.js
lib/node_modules/minimatch/minimatch.js
lib/node_modules/minimatch/package.json
lib/node_modules/minipass/
@@ -1106,7 +1033,6 @@ lib/node_modules/minipass-collect/index.
lib/node_modules/minipass-collect/package.json
lib/node_modules/minipass-fetch/
lib/node_modules/minipass-fetch/LICENSE
-lib/node_modules/minipass-fetch/index.js
lib/node_modules/minipass-fetch/lib/
lib/node_modules/minipass-fetch/lib/abort-error.js
lib/node_modules/minipass-fetch/lib/blob.js
@@ -1192,16 +1118,18 @@ lib/node_modules/node-gyp/CHANGELOG.md
lib/node_modules/node-gyp/CONTRIBUTING.md
lib/node_modules/node-gyp/LICENSE
lib/node_modules/node-gyp/README.md
+lib/node_modules/node-gyp/SECURITY.md
${MODPY_COMMENT}lib/node_modules/node-gyp/${MODPY_PYCACHE}/
lib/node_modules/node-gyp/${MODPY_PYCACHE}update-gyp.${MODPY_PYC_MAGIC_TAG}pyc
lib/node_modules/node-gyp/addon.gypi
lib/node_modules/node-gyp/bin/
lib/node_modules/node-gyp/bin/node-gyp.js
lib/node_modules/node-gyp/docs/
-lib/node_modules/node-gyp/docs/Common-issues.md
lib/node_modules/node-gyp/docs/Error-pre-versions-of-node-cannot-be-installed.md
+lib/node_modules/node-gyp/docs/Force-npm-to-use-global-node-gyp.md
lib/node_modules/node-gyp/docs/Home.md
lib/node_modules/node-gyp/docs/Linking-to-OpenSSL.md
+lib/node_modules/node-gyp/docs/README.md
lib/node_modules/node-gyp/docs/Updating-npm-bundled-node-gyp.md
lib/node_modules/node-gyp/docs/binding.gyp-files-in-the-wild.md
lib/node_modules/node-gyp/gyp/
@@ -1361,37 +1289,20 @@ lib/node_modules/node-gyp/lib/util.js
lib/node_modules/node-gyp/macOS_Catalina.md
lib/node_modules/node-gyp/macOS_Catalina_acid_test.sh
lib/node_modules/node-gyp/node_modules/
-lib/node_modules/node-gyp/node_modules/@tootallnate/
-lib/node_modules/node-gyp/node_modules/@tootallnate/once/
-lib/node_modules/node-gyp/node_modules/@tootallnate/once/dist/
-lib/node_modules/node-gyp/node_modules/@tootallnate/once/dist/index.d.ts
-lib/node_modules/node-gyp/node_modules/@tootallnate/once/dist/index.js
-lib/node_modules/node-gyp/node_modules/@tootallnate/once/dist/index.js.map
-lib/node_modules/node-gyp/node_modules/@tootallnate/once/package.json
-lib/node_modules/node-gyp/node_modules/http-proxy-agent/
-lib/node_modules/node-gyp/node_modules/http-proxy-agent/dist/
-lib/node_modules/node-gyp/node_modules/http-proxy-agent/dist/agent.d.ts
-lib/node_modules/node-gyp/node_modules/http-proxy-agent/dist/agent.js
-lib/node_modules/node-gyp/node_modules/http-proxy-agent/dist/agent.js.map
-lib/node_modules/node-gyp/node_modules/http-proxy-agent/dist/index.d.ts
-lib/node_modules/node-gyp/node_modules/http-proxy-agent/dist/index.js
-lib/node_modules/node-gyp/node_modules/http-proxy-agent/dist/index.js.map
-lib/node_modules/node-gyp/node_modules/http-proxy-agent/package.json
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/LICENSE
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/agent.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/entry.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/errors.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/index.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/key.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/cache/policy.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/fetch.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/index.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/options.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/lib/remote.js
-lib/node_modules/node-gyp/node_modules/make-fetch-happen/package.json
+lib/node_modules/node-gyp/node_modules/brace-expansion/
+lib/node_modules/node-gyp/node_modules/brace-expansion/LICENSE
+lib/node_modules/node-gyp/node_modules/brace-expansion/index.js
+lib/node_modules/node-gyp/node_modules/brace-expansion/package.json
+lib/node_modules/node-gyp/node_modules/glob/
+lib/node_modules/node-gyp/node_modules/glob/LICENSE
+lib/node_modules/node-gyp/node_modules/glob/common.js
+lib/node_modules/node-gyp/node_modules/glob/glob.js
+lib/node_modules/node-gyp/node_modules/glob/package.json
+lib/node_modules/node-gyp/node_modules/glob/sync.js
+lib/node_modules/node-gyp/node_modules/minimatch/
+lib/node_modules/node-gyp/node_modules/minimatch/LICENSE
+lib/node_modules/node-gyp/node_modules/minimatch/minimatch.js
+lib/node_modules/node-gyp/node_modules/minimatch/package.json
lib/node_modules/node-gyp/package.json
lib/node_modules/node-gyp/src/
lib/node_modules/node-gyp/src/win_delay_load_hook.cc
@@ -1426,7 +1337,6 @@ lib/node_modules/nopt/lib/
lib/node_modules/nopt/lib/nopt.js
lib/node_modules/nopt/package.json
lib/node_modules/normalize-package-data/
-lib/node_modules/normalize-package-data/AUTHORS
lib/node_modules/normalize-package-data/LICENSE
lib/node_modules/normalize-package-data/lib/
lib/node_modules/normalize-package-data/lib/extract_description.js
@@ -1456,7 +1366,8 @@ lib/node_modules/npm-bundled/index.js
lib/node_modules/npm-bundled/package.json
lib/node_modules/npm-install-checks/
lib/node_modules/npm-install-checks/LICENSE
-lib/node_modules/npm-install-checks/index.js
+lib/node_modules/npm-install-checks/lib/
+lib/node_modules/npm-install-checks/lib/index.js
lib/node_modules/npm-install-checks/package.json
lib/node_modules/npm-normalize-package-bin/
lib/node_modules/npm-normalize-package-bin/LICENSE
@@ -1465,18 +1376,21 @@ lib/node_modules/npm-normalize-package-b
lib/node_modules/npm-normalize-package-bin/package.json
lib/node_modules/npm-package-arg/
lib/node_modules/npm-package-arg/LICENSE
-lib/node_modules/npm-package-arg/npa.js
+lib/node_modules/npm-package-arg/lib/
+lib/node_modules/npm-package-arg/lib/npa.js
lib/node_modules/npm-package-arg/package.json
lib/node_modules/npm-packlist/
lib/node_modules/npm-packlist/LICENSE
lib/node_modules/npm-packlist/README.md
lib/node_modules/npm-packlist/bin/
lib/node_modules/npm-packlist/bin/index.js
-lib/node_modules/npm-packlist/index.js
+lib/node_modules/npm-packlist/lib/
+lib/node_modules/npm-packlist/lib/index.js
lib/node_modules/npm-packlist/package.json
lib/node_modules/npm-pick-manifest/
lib/node_modules/npm-pick-manifest/LICENSE.md
-lib/node_modules/npm-pick-manifest/index.js
+lib/node_modules/npm-pick-manifest/lib/
+lib/node_modules/npm-pick-manifest/lib/index.js
lib/node_modules/npm-pick-manifest/package.json
lib/node_modules/npm-profile/
lib/node_modules/npm-profile/LICENSE.md
@@ -1488,10 +1402,10 @@ lib/node_modules/npm-registry-fetch/LICE
lib/node_modules/npm-registry-fetch/lib/
lib/node_modules/npm-registry-fetch/lib/auth.js
lib/node_modules/npm-registry-fetch/lib/check-response.js
+lib/node_modules/npm-registry-fetch/lib/clean-url.js
lib/node_modules/npm-registry-fetch/lib/default-opts.js
lib/node_modules/npm-registry-fetch/lib/errors.js
lib/node_modules/npm-registry-fetch/lib/index.js
-lib/node_modules/npm-registry-fetch/lib/silentlog.js
lib/node_modules/npm-registry-fetch/package.json
lib/node_modules/npm-user-validate/
lib/node_modules/npm-user-validate/LICENSE
@@ -1761,9 +1675,7 @@ lib/node_modules/npm/lib/exec/
lib/node_modules/npm/lib/exec/get-workspace-location-msg.js
lib/node_modules/npm/lib/lifecycle-cmd.js
lib/node_modules/npm/lib/npm.js
-lib/node_modules/npm/lib/search/
-lib/node_modules/npm/lib/search/format-package-stream.js
-lib/node_modules/npm/lib/search/package-filter.js
+lib/node_modules/npm/lib/package-url-cmd.js
lib/node_modules/npm/lib/utils/
lib/node_modules/npm/lib/utils/ansi-trim.js
lib/node_modules/npm/lib/utils/audit-error.js
@@ -1778,42 +1690,32 @@ lib/node_modules/npm/lib/utils/config/de
lib/node_modules/npm/lib/utils/config/describe-all.js
lib/node_modules/npm/lib/utils/config/flatten.js
lib/node_modules/npm/lib/utils/config/index.js
-lib/node_modules/npm/lib/utils/deref-command.js
lib/node_modules/npm/lib/utils/did-you-mean.js
lib/node_modules/npm/lib/utils/display.js
lib/node_modules/npm/lib/utils/error-message.js
lib/node_modules/npm/lib/utils/exit-handler.js
lib/node_modules/npm/lib/utils/explain-dep.js
lib/node_modules/npm/lib/utils/explain-eresolve.js
-lib/node_modules/npm/lib/utils/file-exists.js
lib/node_modules/npm/lib/utils/format-bytes.js
+lib/node_modules/npm/lib/utils/format-search-stream.js
lib/node_modules/npm/lib/utils/get-identity.js
-lib/node_modules/npm/lib/utils/hosted-git-info-from-manifest.js
-lib/node_modules/npm/lib/utils/is-windows-bash.js
-lib/node_modules/npm/lib/utils/is-windows-shell.js
lib/node_modules/npm/lib/utils/is-windows.js
lib/node_modules/npm/lib/utils/log-file.js
lib/node_modules/npm/lib/utils/log-shim.js
lib/node_modules/npm/lib/utils/npm-usage.js
lib/node_modules/npm/lib/utils/open-url.js
lib/node_modules/npm/lib/utils/otplease.js
-lib/node_modules/npm/lib/utils/path.js
lib/node_modules/npm/lib/utils/ping.js
lib/node_modules/npm/lib/utils/pulse-till-done.js
lib/node_modules/npm/lib/utils/queryable.js
-lib/node_modules/npm/lib/utils/read-package-name.js
lib/node_modules/npm/lib/utils/read-user-info.js
lib/node_modules/npm/lib/utils/reify-finish.js
lib/node_modules/npm/lib/utils/reify-output.js
lib/node_modules/npm/lib/utils/replace-info.js
-lib/node_modules/npm/lib/utils/split-package-names.js
lib/node_modules/npm/lib/utils/tar.js
lib/node_modules/npm/lib/utils/timers.js
-lib/node_modules/npm/lib/utils/unsupported.js
lib/node_modules/npm/lib/utils/update-notifier.js
-lib/node_modules/npm/lib/utils/usage.js
lib/node_modules/npm/lib/utils/validate-lockfile.js
-lib/node_modules/npm/lib/utils/with-chown-sync.js
lib/node_modules/npm/lib/workspaces/
lib/node_modules/npm/lib/workspaces/get-workspaces.js
@mandir lib/node_modules/npm/man/
@@ -1901,6 +1803,7 @@ lib/node_modules/npm/man/man7/
@man lib/node_modules/npm/man/man7/scripts.7
@man lib/node_modules/npm/man/man7/workspaces.7
lib/node_modules/npm/node_modules/
+lib/node_modules/npm/node_modules/@colors
lib/node_modules/npm/node_modules/@gar
lib/node_modules/npm/node_modules/@isaacs
lib/node_modules/npm/node_modules/@npmcli
@@ -1911,8 +1814,6 @@ lib/node_modules/npm/node_modules/agentk
lib/node_modules/npm/node_modules/aggregate-error
lib/node_modules/npm/node_modules/ansi-regex
lib/node_modules/npm/node_modules/ansi-styles
-lib/node_modules/npm/node_modules/ansicolors
-lib/node_modules/npm/node_modules/ansistyles
lib/node_modules/npm/node_modules/aproba
lib/node_modules/npm/node_modules/archy
lib/node_modules/npm/node_modules/are-we-there-yet
@@ -1934,7 +1835,6 @@ lib/node_modules/npm/node_modules/cmd-sh
lib/node_modules/npm/node_modules/color-convert
lib/node_modules/npm/node_modules/color-name
lib/node_modules/npm/node_modules/color-support
-lib/node_modules/npm/node_modules/colors
lib/node_modules/npm/node_modules/columnify
lib/node_modules/npm/node_modules/common-ancestor-path
lib/node_modules/npm/node_modules/concat-map
@@ -1980,7 +1880,6 @@ lib/node_modules/npm/node_modules/is-cid
lib/node_modules/npm/node_modules/is-core-module
lib/node_modules/npm/node_modules/is-fullwidth-code-point
lib/node_modules/npm/node_modules/is-lambda
-lib/node_modules/npm/node_modules/is-typedarray
lib/node_modules/npm/node_modules/isexe
lib/node_modules/npm/node_modules/json-parse-even-better-errors
lib/node_modules/npm/node_modules/json-stringify-nice
@@ -2065,14 +1964,12 @@ lib/node_modules/npm/node_modules/spdx-l
lib/node_modules/npm/node_modules/ssri
lib/node_modules/npm/node_modules/string-width
lib/node_modules/npm/node_modules/string_decoder
-lib/node_modules/npm/node_modules/stringify-package
lib/node_modules/npm/node_modules/strip-ansi
lib/node_modules/npm/node_modules/supports-color
lib/node_modules/npm/node_modules/tar
lib/node_modules/npm/node_modules/text-table
lib/node_modules/npm/node_modules/tiny-relative-date
lib/node_modules/npm/node_modules/treeverse
-lib/node_modules/npm/node_modules/typedarray-to-buffer
lib/node_modules/npm/node_modules/unique-filename
lib/node_modules/npm/node_modules/unique-slug
lib/node_modules/npm/node_modules/util-deprecate
@@ -2086,9 +1983,6 @@ lib/node_modules/npm/node_modules/wrappy
lib/node_modules/npm/node_modules/write-file-atomic
lib/node_modules/npm/node_modules/yallist
lib/node_modules/npm/package.json
-lib/node_modules/npm/tap-snapshots/
-lib/node_modules/npm/tap-snapshots/smoke-tests/
-lib/node_modules/npm/tap-snapshots/smoke-tests/index.js.test.cjs
lib/node_modules/npmlog/
lib/node_modules/npmlog/LICENSE.md
lib/node_modules/npmlog/lib/
@@ -2129,8 +2023,8 @@ lib/node_modules/pacote/lib/util/add-git
lib/node_modules/pacote/lib/util/cache-dir.js
lib/node_modules/pacote/lib/util/is-package-bin.js
lib/node_modules/pacote/lib/util/npm.js
-lib/node_modules/pacote/lib/util/proc-log.js
lib/node_modules/pacote/lib/util/tar-create-options.js
+lib/node_modules/pacote/lib/util/trailing-slashes.js
lib/node_modules/pacote/package.json
lib/node_modules/parse-conflict-json/
lib/node_modules/parse-conflict-json/LICENSE.md
@@ -2144,7 +2038,8 @@ lib/node_modules/path-is-absolute/packag
lib/node_modules/path-is-absolute/readme.md
lib/node_modules/proc-log/
lib/node_modules/proc-log/LICENSE
-lib/node_modules/proc-log/index.js
+lib/node_modules/proc-log/lib/
+lib/node_modules/proc-log/lib/index.js
lib/node_modules/proc-log/package.json
lib/node_modules/promise-all-reject-late/
lib/node_modules/promise-all-reject-late/LICENSE
@@ -2204,7 +2099,8 @@ lib/node_modules/qrcode-terminal/vendor/
lib/node_modules/read/
lib/node_modules/read-cmd-shim/
lib/node_modules/read-cmd-shim/LICENSE
-lib/node_modules/read-cmd-shim/index.js
+lib/node_modules/read-cmd-shim/lib/
+lib/node_modules/read-cmd-shim/lib/index.js
lib/node_modules/read-cmd-shim/package.json
lib/node_modules/read-package-json/
lib/node_modules/read-package-json-fast/
@@ -2212,8 +2108,9 @@ lib/node_modules/read-package-json-fast/
lib/node_modules/read-package-json-fast/index.js
lib/node_modules/read-package-json-fast/package.json
lib/node_modules/read-package-json/LICENSE
+lib/node_modules/read-package-json/lib/
+lib/node_modules/read-package-json/lib/read-json.js
lib/node_modules/read-package-json/package.json
-lib/node_modules/read-package-json/read-json.js
lib/node_modules/read/LICENSE
lib/node_modules/read/lib/
lib/node_modules/read/lib/read.js
@@ -2267,6 +2164,21 @@ lib/node_modules/rimraf/CHANGELOG.md
lib/node_modules/rimraf/LICENSE
lib/node_modules/rimraf/README.md
lib/node_modules/rimraf/bin.js
+lib/node_modules/rimraf/node_modules/
+lib/node_modules/rimraf/node_modules/brace-expansion/
+lib/node_modules/rimraf/node_modules/brace-expansion/LICENSE
+lib/node_modules/rimraf/node_modules/brace-expansion/index.js
+lib/node_modules/rimraf/node_modules/brace-expansion/package.json
+lib/node_modules/rimraf/node_modules/glob/
+lib/node_modules/rimraf/node_modules/glob/LICENSE
+lib/node_modules/rimraf/node_modules/glob/common.js
+lib/node_modules/rimraf/node_modules/glob/glob.js
+lib/node_modules/rimraf/node_modules/glob/package.json
+lib/node_modules/rimraf/node_modules/glob/sync.js
+lib/node_modules/rimraf/node_modules/minimatch/
+lib/node_modules/rimraf/node_modules/minimatch/LICENSE
+lib/node_modules/rimraf/node_modules/minimatch/minimatch.js
+lib/node_modules/rimraf/node_modules/minimatch/package.json
lib/node_modules/rimraf/package.json
lib/node_modules/rimraf/rimraf.js
lib/node_modules/safe-buffer/
@@ -2283,7 +2195,6 @@ lib/node_modules/safer-buffer/package.js
lib/node_modules/safer-buffer/safer.js
lib/node_modules/safer-buffer/tests.js
lib/node_modules/semver/
-lib/node_modules/semver/CHANGELOG.md
lib/node_modules/semver/LICENSE
lib/node_modules/semver/README.md
lib/node_modules/semver/bin/
@@ -2325,6 +2236,11 @@ lib/node_modules/semver/internal/debug.j
lib/node_modules/semver/internal/identifiers.js
lib/node_modules/semver/internal/parse-options.js
lib/node_modules/semver/internal/re.js
+lib/node_modules/semver/node_modules/
+lib/node_modules/semver/node_modules/lru-cache/
+lib/node_modules/semver/node_modules/lru-cache/LICENSE
+lib/node_modules/semver/node_modules/lru-cache/index.js
+lib/node_modules/semver/node_modules/lru-cache/package.json
lib/node_modules/semver/package.json
lib/node_modules/semver/preload.js
lib/node_modules/semver/range.bnf
@@ -2365,9 +2281,6 @@ lib/node_modules/smart-buffer/typings/ut
lib/node_modules/socks/
lib/node_modules/socks-proxy-agent/
lib/node_modules/socks-proxy-agent/dist/
-lib/node_modules/socks-proxy-agent/dist/agent.d.ts
-lib/node_modules/socks-proxy-agent/dist/agent.js
-lib/node_modules/socks-proxy-agent/dist/agent.js.map
lib/node_modules/socks-proxy-agent/dist/index.d.ts
lib/node_modules/socks-proxy-agent/dist/index.js
lib/node_modules/socks-proxy-agent/dist/index.js.map
@@ -2431,22 +2344,13 @@ lib/node_modules/spdx-license-ids/index.
lib/node_modules/spdx-license-ids/package.json
lib/node_modules/ssri/
lib/node_modules/ssri/LICENSE.md
-lib/node_modules/ssri/index.js
+lib/node_modules/ssri/lib/
+lib/node_modules/ssri/lib/index.js
lib/node_modules/ssri/package.json
lib/node_modules/string-width/
+lib/node_modules/string-width/index.d.ts
lib/node_modules/string-width/index.js
lib/node_modules/string-width/license
-lib/node_modules/string-width/node_modules/
-lib/node_modules/string-width/node_modules/ansi-regex/
-lib/node_modules/string-width/node_modules/ansi-regex/index.js
-lib/node_modules/string-width/node_modules/ansi-regex/license
-lib/node_modules/string-width/node_modules/ansi-regex/package.json
-lib/node_modules/string-width/node_modules/ansi-regex/readme.md
-lib/node_modules/string-width/node_modules/strip-ansi/
-lib/node_modules/string-width/node_modules/strip-ansi/index.js
-lib/node_modules/string-width/node_modules/strip-ansi/license
-lib/node_modules/string-width/node_modules/strip-ansi/package.json
-lib/node_modules/string-width/node_modules/strip-ansi/readme.md
lib/node_modules/string-width/package.json
lib/node_modules/string-width/readme.md
lib/node_modules/string_decoder/
@@ -2454,11 +2358,8 @@ lib/node_modules/string_decoder/LICENSE
lib/node_modules/string_decoder/lib/
lib/node_modules/string_decoder/lib/string_decoder.js
lib/node_modules/string_decoder/package.json
-lib/node_modules/stringify-package/
-lib/node_modules/stringify-package/LICENSE
-lib/node_modules/stringify-package/index.js
-lib/node_modules/stringify-package/package.json
lib/node_modules/strip-ansi/
+lib/node_modules/strip-ansi/index.d.ts
lib/node_modules/strip-ansi/index.js
lib/node_modules/strip-ansi/license
lib/node_modules/strip-ansi/package.json
@@ -2527,16 +2428,12 @@ lib/node_modules/tiny-relative-date/tran
lib/node_modules/tiny-relative-date/translations/es.js
lib/node_modules/treeverse/
lib/node_modules/treeverse/LICENSE
-lib/node_modules/treeverse/index.js
lib/node_modules/treeverse/lib/
lib/node_modules/treeverse/lib/breadth.js
lib/node_modules/treeverse/lib/depth-descent.js
lib/node_modules/treeverse/lib/depth.js
+lib/node_modules/treeverse/lib/index.js
lib/node_modules/treeverse/package.json
-lib/node_modules/typedarray-to-buffer/
-lib/node_modules/typedarray-to-buffer/LICENSE
-lib/node_modules/typedarray-to-buffer/index.js
-lib/node_modules/typedarray-to-buffer/package.json
lib/node_modules/unique-filename/
lib/node_modules/unique-filename/LICENSE
lib/node_modules/unique-filename/coverage/
@@ -2567,7 +2464,8 @@ lib/node_modules/validate-npm-package-li
lib/node_modules/validate-npm-package-license/package.json
lib/node_modules/validate-npm-package-name/
lib/node_modules/validate-npm-package-name/LICENSE
-lib/node_modules/validate-npm-package-name/index.js
+lib/node_modules/validate-npm-package-name/lib/
+lib/node_modules/validate-npm-package-name/lib/index.js
lib/node_modules/validate-npm-package-name/package.json
lib/node_modules/walk-up-path/
lib/node_modules/walk-up-path/LICENSE
@@ -2612,7 +2510,7 @@ share/doc/node/
share/doc/node/gdbinit
share/doc/node/lldb_commands.py
share/node/
-share/node/${DISTNAME}-headers${EXTRACT_SUFX}
+share/node/${DISTNAME}-headers.tar.xz
share/systemtap/
share/systemtap/tapset/
share/systemtap/tapset/node.stp
This updates lang/node to 16.15.1

Changes:
* use tar.xz instead of tar.gz (smaller archives)
* make use of devel/gtest in TEST_DEPENDS ... gtest in ports no longer
conflicts with the bundled version
* PLIST churn due to update of the bundled npm

No explicitly mentioned security content, so it's probably not necessary
to backport this to -stable.

Tested on amd64.

No comments:

Post a Comment