v0.3.1: 添加编辑器搜索/替换功能,修复ESLint和lint-staged错误

- 新增 SearchReplace 组件:Ctrl+F 搜索、Ctrl+H 替换、实时高亮、大小写切换、导航、全部替换
- 修复 tabStore.test.ts 未使用变量的 ESLint 错误
- 修复 lint-staged tsc 命令不兼容 Milkdown .d.ts 的问题
- 版本号 0.3.0 → 0.3.1 (package.json + AboutDialog)
- tsc 零错误、78/78 测试通过、构建成功
This commit is contained in:
thzxx
2026-06-04 10:22:15 +08:00
parent b1803c6467
commit b34cbb5de3
7 changed files with 642 additions and 46 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "marklite",
"version": "0.3.0",
"version": "0.3.1",
"description": "Lightweight Markdown Editor for Windows",
"main": "./dist/main/index.js",
"scripts": {
@@ -19,7 +19,7 @@
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"tsc --noEmit --pretty"
"bash -c 'tsc --noEmit --pretty --skipLibCheck'"
],
"*.{json,css,md}": [
"prettier --write"