Skip to content

Commit

Permalink
fix: root package config
Browse files Browse the repository at this point in the history
Signed-off-by: Wouter Termont <woutermont@gmail.com>
  • Loading branch information
woutermont committed Apr 26, 2021
1 parent b6fbad9 commit c2f23ad
Showing 1 changed file with 29 additions and 57 deletions.
86 changes: 29 additions & 57 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,60 +1,32 @@
{
"packages": [
"packages/*"
],
"command": {
"bootstrap": {
"ignorePrepublish": true
},
"version": {
"allowBranch": [
"master",
"develop"
],
"conventionalCommits": true,
"exact": true,
"forcePublish": true,
"message": "chore: release %s",
"granularPathspec": false,
"tag-version-prefix": "",
"changelogPreset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "**Features**"
},
{
"type": "fix",
"section": "**Bug Fixes**"
},
{
"type": "docs",
"section": "**Documentation**"
},
{
"type": "chore",
"hidden": true
},
{
"type": "build",
"hidden": true
},
{
"type": "test",
"hidden": true
}
],
"releaseCommitMessageFormat": "chore: release v{{currentTag}}",
"issuePrefixes": [
"#"
],
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
"commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
"compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
"userUrlFormat": "{{host}}/{{user}}"
}
}
"name": "root",
"version": "0.0.2",
"private": true,
"commitlint": {
"extends": [
"./packages/commitlint-config"
]
},
"version": "0.1.0"
"lerna": {
"extends": "./packages/lerna-config",
"version": "0.0.2"
},
"lint-staged": {
"*": []
},
"scripts": {
"release": "lerna version",
"postinstall": "husky install",
"bootstrap": "npm ci && lerna bootstrap --ignore-prepublish",
"bootstrap:no-ci": "npm i && lerna bootstrap --no-ci --ignore-prepublish",
"lint:staged": "lerna run lint:staged --since HEAD --stream --concurrency 1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"conventional-changelog-conventionalcommits": "^4.5.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4"
}
}

0 comments on commit c2f23ad

Please sign in to comment.