Compare commits

...

3 Commits

Author SHA1 Message Date
66d07bb2a5 bump version 2024-11-13 17:56:20 +08:00
28035a8513 更换 action 2024-11-13 17:53:31 +08:00
98ff7de56a 修复单主题时的 BUG 2024-11-13 17:41:38 +08:00
3 changed files with 13 additions and 17 deletions

View File

@ -15,18 +15,12 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- run: npm run build
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm publish
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish package to npm
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
NODE_AUTH_TOKEN: ${{ secrets.npm_token }}

View File

@ -1,6 +1,6 @@
{
"name": "hexo-highlighter-shiki",
"version": "1.2.0",
"version": "1.2.2",
"description": "A package for Hexo which use Shiki to render code highlight.",
"main": "dist/index.js",
"files": [
@ -36,6 +36,7 @@
"typescript": "^5.6.3"
},
"peerDependencies": {
"hexo": "^7.0.0"
"hexo": "^7.0.0",
"hexo-util": "^3.3.0"
}
}

View File

@ -69,6 +69,7 @@ export async function init(hexo: Hexo) {
for (const extra_theme of [].concat(config.additional.themes)) {
additional_themes.push(JSON.parse(readFileSync(extra_theme, "utf8")));
}
// 处理主题
const themes = additional_themes.concat(
(typeof config.theme === "string" ? [config.theme] : Object.values(config.theme)).filter(
(theme) => theme in bundledThemes
@ -151,7 +152,7 @@ export async function init(hexo: Hexo) {
};
};
try {
if (config.theme === "string")
if (typeof config.theme === "string")
pre = highlighter.codeToHtml(code, {
lang,
theme: config.theme,