From 8c8ac4be51025d42d134ba797b12355163e144ed Mon Sep 17 00:00:00 2001 From: Ranjan Shrestha Date: Thu, 2 Nov 2017 21:36:28 +0545 Subject: [PATCH] Don't include examples in the npm package (#60) Do not include the examples while creating npm package * Include .gitignore content in .npmignore --- .npmignore | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 .npmignore diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..66f90dd --- /dev/null +++ b/.npmignore @@ -0,0 +1,42 @@ +# Xcode +!**/*.xcodeproj +!**/*.pbxproj +!**/*.xcworkspacedata +!**/*.xcsettings +!**/*.xcscheme +*.pbxuser +!default.pbxuser +*.mode1v3 +!default.mode1v3 +*.mode2v3 +!default.mode2v3 +*.perspectivev3 +!default.perspectivev3 +xcuserdata +*.xccheckout +*.moved-aside +DerivedData +*.hmap +*.ipa +*.xcuserstate +project.xcworkspace + +# Xcode, Gradle +build/ + +# Android +.idea +.gradle +local.properties +*.iml + +# Node +node_modules +*.log +.nvm + +# OS X +.DS_Store + +# examples is not required in npm package +examples/ \ No newline at end of file