Skip to content

Commit 5305fbc

Browse files
committed
Add deps
1 parent acdb876 commit 5305fbc

File tree

2 files changed

+180
-1
lines changed

2 files changed

+180
-1
lines changed

package.json

Lines changed: 179 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,179 @@
1+
2+
{
3+
"name": "jekyll-theme-chirpy",
4+
"version": "7.1.1",
5+
"description": "A minimal, responsive, and feature-rich Jekyll theme for technical writing.",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/cotes2020/jekyll-theme-chirpy.git"
9+
},
10+
"author": "Cotes Chung",
11+
"license": "MIT",
12+
"since": 2019,
13+
"bugs": {
14+
"url": "https://github.com/cotes2020/jekyll-theme-chirpy/issues"
15+
},
16+
"homepage": "https://github.com/cotes2020/jekyll-theme-chirpy/",
17+
"scripts": {
18+
"build": "concurrently npm:build:*",
19+
"build:css": "purgecss -c purgecss.config.js",
20+
"build:js": "rollup -c --bundleConfigAsCjs --environment BUILD:production",
21+
"watch:js": "rollup -c --bundleConfigAsCjs -w",
22+
"lint:scss": "stylelint _sass/**/*.scss",
23+
"lint:fix:scss": "npm run lint:scss -- --fix",
24+
"test": "npm run lint:scss",
25+
"prepare": "husky"
26+
},
27+
"dependencies": {
28+
"@popperjs/core": "^2.11.8",
29+
"bootstrap": "^5.3.3"
30+
},
31+
"devDependencies": {
32+
"@babel/core": "^7.25.2",
33+
"@babel/plugin-transform-class-properties": "^7.25.4",
34+
"@babel/plugin-transform-private-methods": "^7.25.7",
35+
"@babel/preset-env": "^7.25.4",
36+
"@commitlint/cli": "^19.5.0",
37+
"@commitlint/config-conventional": "^19.5.0",
38+
"@rollup/plugin-babel": "^6.0.4",
39+
"@rollup/plugin-node-resolve": "^15.2.3",
40+
"@rollup/plugin-terser": "^0.4.4",
41+
"@semantic-release/changelog": "^6.0.3",
42+
"@semantic-release/exec": "^6.0.3",
43+
"@semantic-release/git": "^10.0.1",
44+
"concurrently": "^9.0.1",
45+
"conventional-changelog-conventionalcommits": "^8.0.0",
46+
"husky": "^9.1.6",
47+
"purgecss": "^6.0.0",
48+
"rollup": "^4.21.3",
49+
"semantic-release": "^24.1.1",
50+
"stylelint": "^16.9.0",
51+
"stylelint-config-standard-scss": "^13.1.0"
52+
},
53+
"prettier": {
54+
"trailingComma": "none"
55+
},
56+
"browserslist": [
57+
"last 2 versions",
58+
"> 0.2%",
59+
"not dead"
60+
],
61+
"commitlint": {
62+
"extends": [
63+
"@commitlint/config-conventional"
64+
],
65+
"rules": {
66+
"body-max-line-length": [
67+
0,
68+
"always"
69+
]
70+
}
71+
},
72+
"stylelint": {
73+
"extends": "stylelint-config-standard-scss",
74+
"rules": {
75+
"no-descending-specificity": null,
76+
"shorthand-property-no-redundant-values": null,
77+
"at-rule-no-vendor-prefix": null,
78+
"property-no-vendor-prefix": null,
79+
"selector-no-vendor-prefix": null,
80+
"value-no-vendor-prefix": null,
81+
"color-function-notation": "legacy",
82+
"alpha-value-notation": "number",
83+
"selector-not-notation": "simple",
84+
"color-hex-length": "long",
85+
"declaration-block-single-line-max-declarations": 3,
86+
"scss/operator-no-newline-after": null,
87+
"rule-empty-line-before": [
88+
"always",
89+
{
90+
"ignore": [
91+
"after-comment",
92+
"first-nested"
93+
]
94+
}
95+
],
96+
"value-keyword-case": [
97+
"lower",
98+
{
99+
"ignoreProperties": [
100+
"/^\\$/"
101+
]
102+
}
103+
],
104+
"media-feature-range-notation": "prefix"
105+
}
106+
},
107+
"release": {
108+
"branches": [
109+
"production"
110+
],
111+
"plugins": [
112+
[
113+
"@semantic-release/commit-analyzer",
114+
{
115+
"preset": "conventionalcommits"
116+
}
117+
],
118+
[
119+
"@semantic-release/release-notes-generator",
120+
{
121+
"preset": "conventionalcommits",
122+
"presetConfig": {
123+
"types": [
124+
{
125+
"type": "feat",
126+
"section": "Features"
127+
},
128+
{
129+
"type": "fix",
130+
"section": "Bug Fixes"
131+
},
132+
{
133+
"type": "perf",
134+
"section": "Improvements"
135+
},
136+
{
137+
"type": "refactor",
138+
"section": "Changes",
139+
"hidden": true
140+
}
141+
]
142+
}
143+
}
144+
],
145+
[
146+
"@semantic-release/changelog",
147+
{
148+
"changelogFile": "docs/CHANGELOG.md",
149+
"changelogTitle": "# Changelog"
150+
}
151+
],
152+
[
153+
"@semantic-release/npm",
154+
{
155+
"npmPublish": false
156+
}
157+
],
158+
[
159+
"@semantic-release/exec",
160+
{
161+
"prepareCmd": "bash tools/release.sh --prepare",
162+
"publishCmd": "bash tools/release.sh"
163+
}
164+
],
165+
[
166+
"@semantic-release/git",
167+
{
168+
"assets": [
169+
"docs",
170+
"package.json",
171+
"*.gemspec"
172+
],
173+
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
174+
}
175+
],
176+
"@semantic-release/github"
177+
]
178+
}
179+
}

tools/init.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ _check_init() {
6161

6262
check_env() {
6363
_check_cli
64-
_check_status
64+
#_check_status
6565
_check_init
6666
}
6767

0 commit comments

Comments
 (0)