From 04b996724b2496c3f26b11f37154af0618b0f387 Mon Sep 17 00:00:00 2001 From: CaryLandholt Date: Sun, 15 Sep 2013 00:43:12 -0500 Subject: [PATCH] add .npmignore During npm publish, certain files and directories can be ignored from the package. See https://npmjs.org/doc/developers.html#Keeping-files-out-of-your-package. This reduces the package size. Keeping AUTHORS, CHANGELOG, CONTRIBUTING.md, LICENSE-MIT Ignoring docs, test, .editorconfig, .gitattributes, .jshintrc, .travis.yml, Gruntfile.js --- .npmignore | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..50bb84e --- /dev/null +++ b/.npmignore @@ -0,0 +1,7 @@ +docs +test +.editorconfig +.gitattributes +.jshintrc +.travis.yml +Gruntfile.js \ No newline at end of file