Skip to content

Commit

Permalink
Add .gitignore in @christiandavid/gatsby-theme-byfolio directory
Browse files Browse the repository at this point in the history
  • Loading branch information
christiandavid committed Dec 16, 2019
1 parent 63ab529 commit f3f942b
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 2 deletions.
74 changes: 74 additions & 0 deletions @christiandavid/gatsby-theme-byfolio/.gitignore
@@ -0,0 +1,74 @@
# 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

# 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

# dotenv environment variables file
.env

# gatsby files
.cache/
public

# Mac files
.DS_Store

# Yarn
yarn-error.log
.pnp/
.pnp.js
# Yarn Integrity file
.yarn-integrity
.vscode

# Cypress
www/cypress/screenshots/
www/cypress/videos/
2 changes: 1 addition & 1 deletion @christiandavid/gatsby-theme-byfolio/package.json
@@ -1,7 +1,7 @@
{
"name": "@christiandavid/gatsby-theme-byfolio",
"description": "A simplified way to create a portfolio using GatsbyJS",
"version": "1.0.2",
"version": "1.0.3",
"license": "MIT",
"keywords": [
"gatsby",
Expand Down
10 changes: 9 additions & 1 deletion package.json
Expand Up @@ -3,5 +3,13 @@
"workspaces": [
"@christiandavid/gatsby-theme-byfolio",
"www"
]
],
"husky": {
"hooks": {
"pre-commit": "yarn workspaces run lint && yarn workspaces run format"
}
},
"devDependencies": {
"husky": "^3.1.0"
}
}

0 comments on commit f3f942b

Please sign in to comment.