Skip to content

Commit

Permalink
feat: move to lerna independent mode
Browse files Browse the repository at this point in the history
fix #18
  • Loading branch information
bd82 committed Oct 28, 2019
1 parent 88aed61 commit 6c347a8
Show file tree
Hide file tree
Showing 8 changed files with 583 additions and 42 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,6 @@ typings/
.nyc_output
coverage

# we are using yarn instead of npm
package-lock.json

10 changes: 9 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,13 @@
"packages": ["packages/*"],
"useWorkspaces": true,
"npmClient": "yarn",
"version": "0.2.0"
"version": "independent",
"command": {
"publish": {
"conventionalCommits": true
},
"version": {
"message": "chore(release): release"
}
}
}
22 changes: 18 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,27 +17,41 @@
"coverage": "lerna run coverage"
},
"devDependencies": {
"typescript": "3.6.4",
"@types/mocha": "5.2.7",
"@types/chai": "4.2.3",
"@types/mocha": "5.2.7",
"chai": "^4.2.0",
"husky": "^3.0.5",
"lerna": "^3.16.4",
"lint-staged": "^9.2.5",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"nyc": "14.1.1",
"prettier": "^1.18.2",
"nyc": "14.1.1"
"typescript": "3.6.4",
"cz-conventional-changelog": "3.0.2",
"@commitlint/cli": "8.2.0",
"@commitlint/config-conventional": "8.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,js,md,json}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}
3 changes: 0 additions & 3 deletions packages/ast/CHANGELOG.md

This file was deleted.

3 changes: 0 additions & 3 deletions packages/content-assist/CHANGELOG.md

This file was deleted.

3 changes: 0 additions & 3 deletions packages/parser/CHANGELOG.md

This file was deleted.

3 changes: 0 additions & 3 deletions packages/validation/CHANGELOG.md

This file was deleted.

Loading

0 comments on commit 6c347a8

Please sign in to comment.