Skip to content

Commit f106ce0

Browse files
committed
2 parents a7140e8 + c5d1144 commit f106ce0

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.husky/commit-msg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
npx --no -- commitlint -x $(npm root -g)/@commitlint/config-conventional --edit
4+
npx --no -- commitlint --edit ${1}

_sass/addon/commons.scss

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
/*
2-
The common styles
3-
*/
1+
/* The common styles */
42

53
html {
64
@media (prefers-color-scheme: light) {
@@ -97,8 +95,6 @@ blockquote {
9795
background-color: var(--blockquote-background-color);
9896
border-top-right-radius: 6px;
9997
border-bottom-right-radius: 6px;
100-
display: flex;
101-
flex-direction: column;
10298

10399
> p:last-child {
104100
margin-bottom: 0;

jekyll-theme-chirpy.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "jekyll-theme-chirpy"
5-
spec.version = "6.4.1"
5+
spec.version = "6.4.2"
66
spec.authors = ["Cotes Chung"]
77
spec.email = ["[email protected]"]
88

package.json

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jekyll-theme-chirpy",
3-
"version": "6.4.1",
3+
"version": "6.4.2",
44
"description": "A minimal, responsive, and feature-rich Jekyll theme for technical writing.",
55
"repository": {
66
"type": "git",
@@ -24,8 +24,11 @@
2424
"@babel/core": "^7.23.7",
2525
"@babel/plugin-proposal-class-properties": "^7.18.6",
2626
"@babel/preset-env": "^7.23.7",
27+
"@commitlint/cli": "^18.4.4",
28+
"@commitlint/config-conventional": "^18.4.4",
2729
"@rollup/plugin-babel": "^6.0.4",
2830
"@rollup/plugin-terser": "^0.4.4",
31+
"husky": "^8.0.3",
2932
"rimraf": "^5.0.5",
3033
"rollup": "^4.9.2",
3134
"rollup-plugin-license": "^3.2.0",
@@ -41,6 +44,9 @@
4144
"not dead"
4245
],
4346
"commitlint": {
47+
"extends": [
48+
"@commitlint/config-conventional"
49+
],
4450
"rules": {
4551
"body-max-line-length": [
4652
0,

0 commit comments

Comments
 (0)