Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuever committed Apr 6, 2018
1 parent d689ab6 commit c8199c3
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
node_modules
website
*.log
lerna-debug.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
/.changelog
Empty file added CHANGELOG.md
Empty file.
14 changes: 13 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,20 @@
"lerna": "2.9.1",
"npmClient": "yarn",
"useWorkspaces": true,
"version": "independent",
"packages": [
"packages/*"
],
"version": "0.0.0"
"changelog": {
"repo": "ryuever/next-docify",
"labels": {
"tag: new feature": ":rocket: New Feature",
"tag: breaking change": ":boom: Breaking Change",
"tag: bug fix": ":bug: Bug Fix",
"tag: enhancement": ":nail_care: Enhancement",
"tag: documentation": ":memo: Documentation",
"tag: internal": ":house: Internal"
},
"cacheDir": ".changelog"
}
}
8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@
"packages/*"
],
"scripts": {
"precommit": "lint-staged"
"publish": "scripts/publish.sh"
},
"devDependencies": {
"husky": "^0.15.0-rc.13",
"lerna": "^2.9.1",
"lerna-changelog": "^0.7.0",
"lint-staged": "^7.0.4",
"prettier": "^1.11.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --trailing-comma es5 --single-quote --write",
Expand Down

0 comments on commit c8199c3

Please sign in to comment.