From 2b5d7243bdfe8dbe00b5ba1c4c3cc2a749a8dd80 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Micha=C5=82=20Go=C5=82e=CC=A8biowski?= Date: Thu, 9 Jun 2016 00:06:53 +0200 Subject: [PATCH] Build: Add .npmrc with save-exact=true This makes commands like `npm install package --save-dev` always get saved to package.json as a pinned version and not as a `^`-delimited range. (cherry-picked from 6600e2e2b9863dc91601d94541a3808cf3ccc90c) --- .npmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..cffe8cdef --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +save-exact=true -- 2.39.5