From fc81e29f3e4384396dae0e309448a122b35802ff Mon Sep 17 00:00:00 2001 From: Tim Haines Date: Tue, 23 Apr 2013 13:25:24 -0700 Subject: [PATCH] Update the readme that gets generated within the .npm folder of packages --- tools/meteor_npm.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tools/meteor_npm.js b/tools/meteor_npm.js index 3284db4dc4..5e30957d17 100644 --- a/tools/meteor_npm.js +++ b/tools/meteor_npm.js @@ -201,9 +201,13 @@ _.extend(exports, { fs.writeFileSync( path.join(newPackageNpmDir, 'README'), // XXX copy? - "This directory and its contents are automatically generated when you change this\n" - + "package's npm dependencies. Commit this directory to source control so that\n" - + "others run the same versions of sub-dependencies.\n" + "This directory and the contained npm-shrinkwrap.json file are automatically\n" + + "generated when you change this package's npm dependencies. Commit this\n" + + "directory and the npm-shrinkwrap.json file to source control so that\n" + + "others run the same versions of sub-dependencies.\n\n" + + "Note the .gitignore in this directory is configured to ignore the\n" + + "node_modules sub-directory that meteor automatically creates.\n" + ); },