Skip to content

Commit e378da3

Browse files
committed
Theme using postcss instead of sylus
1 parent 9f6443f commit e378da3

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

.postcssrc.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
'postcss-import': {},
4+
'cssnano': {}
5+
}
6+
}

package.json

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
11
{
22
"name": "tpi.eu",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"private": true,
55
"hexo": {
66
"version": "7.2.0"
77
},
88
"dependencies": {
99
"hexo": "7.2.0",
10-
"hexo-clean-css": "^2.0.0",
10+
"hexo-postcss": "^2.0.0",
11+
"postcss-import": "^16.1.0",
12+
"cssnano": "^7.0.1",
1113
"hexo-generator-feed": "^3.0.0",
1214
"hexo-generator-index": "^3.0.0",
1315
"hexo-generator-tag": "^2.0.0",
1416
"hexo-html-minifier": "^1.0.0",
17+
1518
"hexo-renderer-ejs": "^2.0.0",
16-
"hexo-renderer-markdown-it": "^7.1.0",
17-
"hexo-renderer-stylus": "^3.0.0",
19+
"hexo-renderer-markdown-it": "^7.1.1",
1820
"hexo-tag-flickr": "github:tomap/hexo-tag-flickr",
19-
"hexo-theme-minidyne": "3.3.6",
21+
"hexo-theme-minidyne": "4.0.1",
2022
"hexo-uncss2": "^2.3.3"
23+
2124
},
2225
"devDependencies": {
23-
"glob": "^10.3.10",
26+
"glob": "^10.3.12",
2427
"hexo-server": "^3.0.0",
2528
"markdownlint": "^0.34.0"
2629
},
@@ -29,6 +32,7 @@
2932
},
3033
"scripts": {
3134
"build": "hexo g && cp assets/indexing-on.txt public/robots.txt && cp public/assets/404.html public/404.html",
35+
"b": "hexo g -f",
3236
"build-off": "hexo g && cp assets/indexing-off.txt public/robots.txt"
3337
}
3438
}

0 commit comments

Comments
 (0)