Skip to content

Commit 7646cf3

Browse files
author
Marvin Zhang
committed
refactor: remove test-utils and tsconfig packages
- Deleted the entire `test-utils` package, including utilities, mocks, and setup files. - Removed shared TypeScript configurations from the `tsconfig` package. - Cleaned up related configuration files and documentation.
1 parent 05063cc commit 7646cf3

File tree

484 files changed

+345
-71082
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

484 files changed

+345
-71082
lines changed

.gitignore

Lines changed: 64 additions & 171 deletions
Original file line numberDiff line numberDiff line change
@@ -1,177 +1,70 @@
1-
# Logs
2-
logs
3-
*.log
4-
npm-debug.log*
5-
yarn-debug.log*
6-
yarn-error.log*
7-
lerna-debug.log*
8-
.pnpm-debug.log*
9-
10-
# Diagnostic reports (https://nodejs.org/api/report.html)
11-
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
12-
13-
# Runtime data
14-
pids
15-
*.pid
16-
*.seed
17-
*.pid.lock
18-
19-
# Directory for instrumented libs generated by jscoverage/JSCover
20-
lib-cov
21-
22-
# Coverage directory used by tools like istanbul
23-
coverage
24-
*.lcov
25-
26-
# nyc test coverage
27-
.nyc_output
28-
29-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
30-
.grunt
31-
32-
# Bower dependency directory (https://bower.io/)
33-
bower_components
34-
35-
# node-waf configuration
36-
.lock-wscript
37-
38-
# Compiled binary addons (https://nodejs.org/api/addons.html)
39-
build/Release
40-
41-
# Dependency directories
42-
node_modules/
43-
jspm_packages/
44-
45-
# Snowpack dependency directory (https://snowpack.dev/)
46-
web_modules/
47-
48-
# TypeScript cache
49-
*.tsbuildinfo
50-
51-
# Generated TypeScript files (should only be in build directories)
52-
**/src/**/*.d.ts
53-
**/src/**/*.d.ts.map
54-
**/src/**/*.js
55-
**/src/**/*.js.map
56-
57-
# Optional npm cache directory
58-
.npm
59-
60-
# Optional eslint cache
61-
.eslintcache
62-
63-
# Optional stylelint cache
64-
.stylelintcache
65-
66-
# Microbundle cache
67-
.rpt2_cache/
68-
.rts2_cache_cjs/
69-
.rts2_cache_es/
70-
.rts2_cache_umd/
71-
72-
# Optional REPL history
73-
.node_repl_history
74-
75-
# Output of 'npm pack'
76-
*.tgz
77-
78-
# Yarn Integrity file
79-
.yarn-integrity
80-
81-
# dotenv environment variable files
1+
# =========================
2+
# Go Build Artifacts
3+
# =========================
4+
bin/
5+
*.exe
6+
*.exe~
7+
*.dll
8+
*.so
9+
*.dylib
10+
11+
# Go test binary
12+
*.test
13+
14+
# Go coverage
15+
coverage.txt
16+
coverage.html
17+
coverage.out
18+
19+
# =========================
20+
# SQLite Database Files
21+
# =========================
22+
*.db
23+
*.db-journal
24+
*.db-shm
25+
*.db-wal
26+
27+
# =========================
28+
# Environment & Config
29+
# =========================
8230
.env
83-
.env.development.local
84-
.env.test.local
85-
.env.production.local
8631
.env.local
32+
.env.*.local
33+
34+
# =========================
35+
# IDE & Editor
36+
# =========================
37+
.idea/
38+
.vscode/
39+
*.swp
40+
*.swo
41+
*~
42+
43+
# =========================
44+
# OS Files
45+
# =========================
46+
.DS_Store
47+
Thumbs.db
48+
49+
# =========================
50+
# Logs
51+
# =========================
52+
logs/
53+
*.log
8754

88-
# parcel-bundler cache (https://parceljs.org/)
89-
.cache
90-
.parcel-cache
91-
92-
# Next.js build output
93-
.next
94-
.next-build
95-
out
96-
97-
# Nuxt.js build / generate output
98-
.nuxt
99-
dist
100-
101-
# Gatsby files
102-
.cache/
103-
# Comment in the public line in if your project uses Gatsby and not Next.js
104-
# https://nextjs.org/blog/next-9-1#public-directory-support
105-
# public
106-
107-
# vuepress build output
108-
.vuepress/dist
109-
110-
# vuepress v2.x temp and cache directory
111-
.temp
112-
.cache
113-
114-
# vitepress build output
115-
**/.vitepress/dist
116-
117-
# vitepress cache directory
118-
**/.vitepress/cache
119-
120-
# Docusaurus cache and generated files
121-
.docusaurus
122-
123-
# Serverless directories
124-
.serverless/
125-
126-
# FuseBox cache
127-
.fusebox/
128-
129-
# DynamoDB Local files
130-
.dynamodb/
131-
132-
# TernJS port file
133-
.tern-port
134-
135-
# Stores VSCode versions used for testing VSCode extensions
136-
.vscode-test
137-
138-
# yarn v2
139-
.yarn/cache
140-
.yarn/unplugged
141-
.yarn/build-state.yml
142-
.yarn/install-state.gz
143-
.pnp.*
144-
145-
# package-lock.json files (this project uses pnpm)
146-
package-lock.json
147-
148-
build/
149-
150-
.idea
151-
152-
# Local development files
153-
.devlog-counter
154-
.devlog.backup*
155-
156-
# Legacy devlog configuration files (no longer used - now uses .env)
157-
# devlog.config.json
158-
# devlog-integrations.config.json
159-
160-
# Local environment variables for development
161-
.nx
162-
163-
# Temporal folder for debugging or quick testing
55+
# =========================
56+
# Local Development
57+
# =========================
58+
.devlog/
16459
tmp/
16560

166-
# Vercel configuration files
167-
.vercel
168-
169-
# Turbo configuration files
170-
.turbo
171-
172-
# Playwright
173-
.playwright-mcp
61+
# =========================
62+
# Playwright MCP
63+
# =========================
64+
.playwright-mcp/
17465

175-
# SQLite database files
176-
*.db# Temporary files
177-
/tmp/
66+
# =========================
67+
# Specs tooling
68+
# =========================
69+
.lean-spec/
70+
.lspec/

.husky/pre-commit

Lines changed: 0 additions & 2 deletions
This file was deleted.

.npmrc

Lines changed: 0 additions & 22 deletions
This file was deleted.

.pnpmrc

Lines changed: 0 additions & 1 deletion
This file was deleted.

.prettierrc

Lines changed: 0 additions & 9 deletions
This file was deleted.

0 commit comments

Comments
 (0)