chore(vscode-ide-companion): 更新 .gitignore 文件

- 移除了 pnpm-lock.yaml 文件的忽略规则
- 保留了 .claude 目录的忽略规则
This commit is contained in:
yiliang114
2025-11-25 13:46:38 +08:00
parent 934365c41f
commit 579772197a
5 changed files with 4 additions and 1169 deletions

1
.gitignore vendored
View File

@@ -59,4 +59,3 @@ gha-creds-*.json
patch_output.log patch_output.log
.claude/ .claude/
pnpm-lock.yaml

1153
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -110,7 +110,6 @@
"yargs": "^17.7.2" "yargs": "^17.7.2"
}, },
"dependencies": { "dependencies": {
"@eslint/js": "^9.39.1",
"@testing-library/dom": "^10.4.1", "@testing-library/dom": "^10.4.1",
"simple-git": "^3.28.0" "simple-git": "^3.28.0"
}, },

View File

@@ -1,3 +0,0 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

View File

@@ -1,15 +0,0 @@
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
globals: true,
environment: 'node',
include: ['src/**/*.test.ts'],
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html', 'clover'],
include: ['src/**/*.ts'],
exclude: ['src/**/*.test.ts', 'src/**/*.d.ts'],
},
},
});
//# sourceMappingURL=vitest.config.js.map