diff options
author | Noah Loomans <noahloomans@gmail.com> | 2016-09-30 17:56:23 +0200 |
---|---|---|
committer | Noah Loomans <noahloomans@gmail.com> | 2016-09-30 17:56:23 +0200 |
commit | e61d32f93511833efef972a50a7fd7a9b4eec78d (patch) | |
tree | b1bdbfd2359b246974a726ebd802a64ebfe84dab /.gitignore | |
parent | ae1f968de09f7952b5b4bad369255a0a60cb81b8 (diff) |
add offline support
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 67 |
1 files changed, 66 insertions, 1 deletions
@@ -1,5 +1,6 @@ +/public/components -# Created by https://www.gitignore.io/api/node +# Created by https://www.gitignore.io/api/node,bower ### Node ### # Logs @@ -43,3 +44,67 @@ jspm_packages # Optional REPL history .node_repl_history + +# Output of 'npm pack' +*.tgz + + +### Bower ### +bower_components +.bower-cache +.bower-registry +.bower-tmp +# Created by https://www.gitignore.io/api/node,bower + +### Node ### +# Logs +logs +*.log +npm-debug.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 + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules +jspm_packages + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + + +### Bower ### +bower_components +.bower-cache +.bower-registry +.bower-tmp |