From 3dd429e9aad760ce2ff9e522b34ebfebd85b460c Mon Sep 17 00:00:00 2001 From: Maxwell Gerber Date: Tue, 2 Jun 2020 11:11:52 -0700 Subject: [PATCH] docs: Add note about dropped `*` filenames In https://github.com/npm/npm-packlist/pull/32, NPM started to drop filenames containing the `*` character. See: - https://github.com/npm/cli/issues/1096 - https://github.com/npm/cli/issues/1048 PR-URL: https://github.com/npm/cli/pull/1377 Credit: @maxwellgerber Close: #1377 Reviewed-by: @claudiahdz --- docs/content/configuring-npm/package-json.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/content/configuring-npm/package-json.md b/docs/content/configuring-npm/package-json.md index 9af70ea0ab2cc..c58fde7923218 100644 --- a/docs/content/configuring-npm/package-json.md +++ b/docs/content/configuring-npm/package-json.md @@ -272,15 +272,13 @@ Conversely, some files are always ignored: * `.hg` * `.lock-wscript` * `.wafpickle-N` -* `.*.swp` * `.DS_Store` -* `._*` * `npm-debug.log` * `.npmrc` * `node_modules` * `config.gypi` -* `*.orig` * `package-lock.json` (use shrinkwrap instead) +* All files containing a `*` character (incompatible with Windows) ### main