Skip to content

Commit

Permalink
refactor(repo): re-scaffold using the latest generator-node-oss (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
luftywiranda13 authored Jan 17, 2019
1 parent 08ae4ea commit c7b6483
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
* text=auto
*.js text eol=lf
* text=auto eol=lf
25 changes: 23 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ coverage
# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
Expand All @@ -36,7 +36,7 @@ build/Release
node_modules/
jspm_packages/

# Typescript v1 declaration files
# TypeScript v1 declaration files
typings/

# Optional npm cache directory
Expand All @@ -56,3 +56,24 @@ typings/

# dotenv environment variables file
.env

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
.nuxt

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/
2 changes: 1 addition & 1 deletion lib/is-ignored.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module.exports = file => {
'/build',
'/coverage',
'/dist',
'/node_modules'
'/node_modules',
];

return DEFAULTS.some(x => file.includes(x));
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"fs-extra": "^7.0.1",
"g-status": "^2.0.0",
"husky": "^1.3.1",
"jest": "^22.1.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"pify": "^4.0.1",
"remove-lockfiles": "^2.1.1",
Expand All @@ -61,7 +61,8 @@
},
"prettier": {
"bracketSpacing": true,
"singleQuote": true
"singleQuote": true,
"trailingComma": "es5"
},
"xo": {
"envs": [
Expand Down

0 comments on commit c7b6483

Please sign in to comment.