Compare commits

...

2 Commits

Author SHA1 Message Date
lutinglt
9c67ea1697 fix ci 2025-12-05 09:35:55 +08:00
lutinglt
4a60775c32 vite 8.0 2025-12-05 09:29:26 +08:00
8 changed files with 19 additions and 20 deletions

View File

@@ -14,5 +14,5 @@ trim_trailing_whitespace = true
max_line_length = 120
# documentation, utils
[*.{md,mdx,diff}]
[*.{md,diff}]
trim_trailing_whitespace = false

View File

@@ -26,7 +26,7 @@ jobs:
id: build
if: steps.changes.outputs.src == 'true'
run: |
npm install
npm run install:vite8
npm run build
- name: Upload css assets

View File

@@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- name: Build theme
run: |
npm install
npm run install:vite8
npm run release
- name: Create release
run: |

View File

@@ -1,3 +1,3 @@
{
"typescript.experimental.useTsgo": true
"typescript.experimental.useTsgo": false
}

View File

@@ -1,15 +1,14 @@
import js from "@eslint/js";
import { defineConfig } from "eslint/config";
import globals from "globals";
import tseslint from "typescript-eslint";
export default tseslint.config(
{ ignores: ["dist"] },
{
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.{ts}"],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
}
);
export default defineConfig({
ignores: ["dist"],
extends: [js.configs.recommended, ...tseslint.configs.recommended],
files: ["**/*.{ts}"],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
});

View File

@@ -11,7 +11,8 @@
"version": "node scripts/version.cjs",
"tr": "node scripts/translate.cjs",
"release": "npm run build && npm run tr",
"install:clean": "npm cache clean --force && rm -rf node_modules package-lock.json && npm install"
"install:clean": "npm cache clean --force && rm -rf node_modules package-lock.json && npm install",
"install:vite8": "npm install --force"
},
"devDependencies": {
"@babel/preset-typescript": "^7.28.4",
@@ -33,7 +34,7 @@
"sass-embedded": "^1.89.2",
"typescript-eslint": "^8.34.1",
"typescript-plugin-css-modules": "^5.1.0",
"vite": "^7.2.4"
"vite": "^8.0.0-beta.0"
},
"prettier": {
"printWidth": 120,

View File

@@ -564,7 +564,7 @@ export const timeline = css`
}
.timeline-item,
.timeline-item-group {
padding: 16px 0;
padding: 12px 0;
.comment-text-line {
color: ${themeVars.color.text.light.num1};
}

View File

@@ -8,9 +8,8 @@ import * as sass from "sass-embedded";
import { defineConfig } from "vite";
import { themeInput, themePlugin } from "./src/core/vite";
dotenv.config({ quiet: true });
const require = createRequire(import.meta.url);
dotenv.config({ quiet: true });
const outDir = "dist"; // 输出目录
const themesDir = "themes"; // 颜色主题目录