From e62c48d9ae31f6ca3f4f17b833ebb8b9d6626627 Mon Sep 17 00:00:00 2001 From: Spencer Date: Mon, 21 Nov 2016 13:51:13 -0700 Subject: [PATCH] [npm] install deps "global-sytle" (#9136) Installing dependencies "global-style" creates a top-level directory in `node_modules` for each direct dependency, and then creates a flat tree of dependencies inside each of those. I prefer this method because it prevents accidentally depending on a dependency of a dependency, and makes it easier to find dependencies in `node_modules`. Unfortunately the `node_modules` directory will be a little deeper. --- .npmrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.npmrc b/.npmrc index cffe8cdef132..3e5f68032c17 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1,2 @@ save-exact=true +global-style=true