summaryrefslogtreecommitdiff
path: root/lang/npm/patches
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2018-05-11 09:37:13 +0000
committeradam <adam@pkgsrc.org>2018-05-11 09:37:13 +0000
commit73c619a1c0a532c47770c71218964e694c8a75d2 (patch)
tree5c2946e8dcb792bc1dfbcbc8232f21815e18b2d5 /lang/npm/patches
parent82e9892fd744f81e927a8d63c7b071d7dfa3068d (diff)
downloadpkgsrc-73c619a1c0a532c47770c71218964e694c8a75d2.tar.gz
npm: updated to 6.0.1
6.0.1: CTRL-C OUT DURING PACKAGE EXTRACTION AS MUCH AS YOU WANT! lockfile@1.0.4: Switches to signal-exit to detect abnormal exits and remove locks. SHRONKWRAPS AND LACKFILES If a published modules had legacy npm-shrinkwrap.json we were saving ordinary registry dependencies (name@version) to your package-lock.json as https:// URLs instead of versions. * When saving the lock-file compute how the dependency is being required instead of using _resolved in the package.json. This fixes the bug that was converting registry dependencies into https:// dependencies. * When encountering a https:// URL in our lockfiles that point at our default registry, extract the version and use them as registry dependencies. This lets us heal package-lock.json files produced by 6.0.0 AUDIT AUDIT EVERYWHERE You can't use it quite yet, but we do have a few last moment patches to npm audit to make it even better when it is turned on!
Diffstat (limited to 'lang/npm/patches')
-rw-r--r--lang/npm/patches/patch-Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/npm/patches/patch-Makefile b/lang/npm/patches/patch-Makefile
index a7641392a18..9c605682f20 100644
--- a/lang/npm/patches/patch-Makefile
+++ b/lang/npm/patches/patch-Makefile
@@ -1,4 +1,4 @@
-$NetBSD: patch-Makefile,v 1.1 2018/05/04 09:40:02 adam Exp $
+$NetBSD: patch-Makefile,v 1.2 2018/05/11 09:37:13 adam Exp $
Do not build npm-index.html on rebuild.
@@ -9,7 +9,7 @@ Do not build npm-index.html on rebuild.
man/man5/npm-global.5
-misc_mandocs = $(shell find doc/misc -name '*.md' \
-+misc_mandocs = $(shell find doc/misc -name '*.md' -not -name 'npm-index.md' \
++misc_mandocs = $(shell find doc/misc -name '*.md' \! -name 'npm-index.md' \
|sed 's|.md|.7|g' \
|sed 's|doc/misc/|man/man7/|g' ) \
man/man7/npm-index.7
@@ -18,7 +18,7 @@ Do not build npm-index.html on rebuild.
html/doc/files/npm-global.html
-misc_htmldocs = $(shell find doc/misc -name '*.md' \
-+misc_htmldocs = $(shell find doc/misc -name '*.md' -not -name 'npm-index.md' \
++misc_htmldocs = $(shell find doc/misc -name '*.md' \! -name 'npm-index.md' \
|sed 's|.md|.html|g' \
|sed 's|doc/misc/|html/doc/misc/|g' ) \
html/doc/index.html