Skip to content

Commit

Permalink
chore: improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Badisi committed Jun 22, 2024
1 parent 9897e06 commit 6fc27fb
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 5 deletions.
9 changes: 6 additions & 3 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
"title": "📖 Documentation"
}
},
"chore": {
"deps": {
"semverBump": "patch",
"changelog": {
"title": "🛠️ Chore"
"title": "🌱 Dependencies"
}
},
"refactor": {
Expand All @@ -63,7 +63,10 @@
"revert": {
"semverBump": "patch",
"changelog": false
}
},
"chore": false,
"build": false,
"ci": false
}
},
"changelog": {
Expand Down
22 changes: 21 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,27 @@
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"deps"
]
]
}
},
"lint-staged": {
"**/*.{js,json,ts,html}": [
Expand Down
11 changes: 11 additions & 0 deletions projects/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 1.1.4 (2024-06-21)


### 🛠️ Chore

- **release:** include CHANGELOG.md in distribution package ([9897e06](https://github.com/DSI-HUG/ngx-components/commit/9897e06))


### ❤️ Thank You

- @Badisi


## 1.1.2 (2024-06-17)
Expand Down
2 changes: 1 addition & 1 deletion scripts/sync-peer-deps.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const getWorkspaces = () => {
execCommand('git', ['add', workspace2.packageJsonPath]);

console.log(`\n${bgWhite(' > ')} Committing changes with git${dryRun ? yellow(' [dry-run]') : ''}`);
execCommand('git', ['commit', '--message', `chore(deps): upgrade ${workspace.packageJson.name} to v${workspace.packageJson.version}`]);
execCommand('git', ['commit', '--message', `deps(${workspace.packageJson.name}): upgrade to v${workspace.packageJson.version}`]);
}
}
});
Expand Down

0 comments on commit 6fc27fb

Please sign in to comment.