From 6fd32e97d2b554192a9e3cca86947a96b82668ff Mon Sep 17 00:00:00 2001 From: Bertrand Willm Date: Fri, 9 Dec 2022 13:06:44 +0100 Subject: [PATCH] Added package-lock.json for Node.js Tools for Visual Studio * Application of the change: Node.js Tools for Visual Studio * Documentation about package-lock.json: https://docs.npmjs.com/cli/v7/configuring-npm/package-lock-json * Change made: package-lock.json is automatically generated for any operations where npm modifies either the node_modules tree, or package.json. That is why node_modules and package.json must be managed together so that package.json is consistent with what node_modules contains, or else, npm may not work properly. As it is important to ignore node_modules, is also important to ignore package-lock.json. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index 8a30d258..0626606b 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -283,6 +283,7 @@ FakesAssemblies/ # Node.js Tools for Visual Studio .ntvs_analysis.dat +package-lock.json node_modules/ # Visual Studio 6 build log