From 4ab9e76fb748b08712f9d0017dd8f0ba74d1859f Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Fri, 23 Sep 2022 16:05:20 -0700 Subject: [PATCH] Use paths in package.json 'files' array that work with npm 6 and later. (#50930) --- package.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package.json b/package.json index 47d6540cd1d26..1424487c9a2e7 100644 --- a/package.json +++ b/package.json @@ -29,13 +29,13 @@ "node": ">=4.2.0" }, "files": [ - "./bin", - "./lib", - "!./lib/enu", - "./LICENSE.txt", - "./README.md", - "./SECURITY.md", - "./ThirdPartyNoticeText.txt", + "bin", + "lib", + "!lib/enu", + "LICENSE.txt", + "README.md", + "SECURITY.md", + "ThirdPartyNoticeText.txt", "!**/.gitattributes" ], "devDependencies": {