Skip to content

Commit

Permalink
Improve .gitignore, update dependencies, and run Prettier (#732)
Browse files Browse the repository at this point in the history
* Improve .gitignore

* Update dependencies

* Run Prettier over codebase
  • Loading branch information
taylorbryant committed Aug 9, 2020
1 parent 7cdd931 commit cb9c044
Show file tree
Hide file tree
Showing 4 changed files with 1,498 additions and 1,387 deletions.
79 changes: 69 additions & 10 deletions .gitignore
@@ -1,14 +1,73 @@
# Project dependencies
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
.cache
node_modules
yarn-error.log
# Based on gatsby-starter-default's .gitignore
# https://github.com/gatsbyjs/gatsby-starter-default/blob/master/.gitignore

# 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 (http://nodejs.org/api/addons.html)
build/Release

# Build directory
/public
# Dependency directories
node_modules/
jspm_packages/

# macOS
# 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

# dotenv environment variable files
.env*

# gatsby files
.cache/
public

# Mac files
.DS_Store

# deployment-specific configs
now.json
# Yarn
yarn-error.log
.pnp/
.pnp.js

# Yarn Integrity file
.yarn-integrity

0 comments on commit cb9c044

Please sign in to comment.