From 2abc9f40dbef7548625255d537d55af238a67e89 Mon Sep 17 00:00:00 2001 From: George Crabtree Date: Mon, 28 Apr 2014 16:48:23 +1000 Subject: [PATCH] added private to package.json This removes these warnings from NPM: npm WARN package.json myApp@0.0.0 No description npm WARN package.json myApp@0.0.0 No repository field. npm WARN package.json myApp@0.0.0 No README data It also stops users from accidentally publishing to NPM. --- templates/common/_package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/common/_package.json b/templates/common/_package.json index 9596f2e64..ccb446e01 100644 --- a/templates/common/_package.json +++ b/templates/common/_package.json @@ -70,5 +70,6 @@ }, "engines": { "node": ">=0.10.0" - } + }, + "private": true }