From a6277b3c12ef8828bc3b0d6705331aa3e73a630c Mon Sep 17 00:00:00 2001 From: Devin Alvaro <devin.alvaro@gmail.com> Date: Tue, 14 Nov 2017 18:29:56 +0700 Subject: [PATCH] Add .gitignore --- .DS_Store | Bin 6148 -> 0 bytes .gitignore | 58 +++++++++++++++++++++++++++++++++++++++++ Readme.md => README.md | 0 3 files changed, 58 insertions(+) delete mode 100644 .DS_Store create mode 100644 .gitignore rename Readme.md => README.md (100%) diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 9b13006779ddebf109612544b03334f6c1e3e290..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6148 zcmeHKJ8l9&47Gs*iH0&oifL1FgAv-CfD1%oC5V(26rtZPXUau#o;-hof<{nMB+rul zX8f7ieZ_h$BDy~HE0Lv$%%O(zVWt&}n>I2@&kU$`#%i-Y496z#mcweN@+yPu-gZrW zMutPz^{4l($k)^7qaSyU^j9LseRJBa=U|KskO4A42FSpFVE{ebWWETbB?DxD44fIT z??Zta*2FQ;KOHbW0s!qd-UVx)C4j{oz?wJ)!UNGL1xBgnh@nvqf62U>I0i<!XbvBm zH)~EP>bK+k;_0F_kd_RPflCIav0YmKe}-O}|1XQUBLigMPcfjgZqu#tO4(bRm$P15 tpfAuLL9VC6cq;~aE5^oJ@x!mYVr#@};uz@V@OwFsKLW-Jg$&$-fp3`VA_)Kh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4521803 --- /dev/null +++ b/.gitignore @@ -0,0 +1,58 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Typescript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env diff --git a/Readme.md b/README.md similarity index 100% rename from Readme.md rename to README.md -- GitLab