Skip to content

Commit fcc4431

Browse files
committed
Start Svelte framework implementation (8/8) - WIP
- Add Svelte generator script with SvelteKit support - Create Svelte template configuration with component/route patterns - Add core build configuration files (Vite, TypeScript, Tailwind) - Update .gitignore with additional temporary file patterns - Clean up obsolete product documentation files Framework support: 7/8 complete, Svelte templates in progress Next: Complete Svelte component and route templates
1 parent 9bc7aeb commit fcc4431

15 files changed

Lines changed: 627 additions & 1400 deletions

File tree

.gitignore

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ wheels/
2424
venv/
2525
ENV/
2626
env/
27+
.venv/
2728

2829
# IDEs
2930
.vscode/
@@ -40,15 +41,58 @@ htmlcov/
4041
# Project-specific
4142
/artifacts/
4243
.selfhost_outputs/
43-
products/*/
44+
products/
4445
evidence/
4546
src/generated/**
47+
test_output/
48+
generated/
49+
50+
# Generated manifests and artifacts
51+
*_manifest.json
52+
api_manifest.json
53+
service_manifest.json
54+
55+
# Node.js
56+
node_modules/
57+
npm-debug.log*
58+
yarn-debug.log*
59+
yarn-error.log*
60+
61+
# Angular
62+
dist/
63+
.tmp/
64+
65+
# Build outputs
66+
build/
67+
target/
4668

4769
# OS
4870
.DS_Store
4971
Thumbs.db
5072

73+
# Logs
74+
*.log
75+
logs/
76+
77+
# Temporary files
78+
*.tmp
79+
*.temp
80+
*.swp
81+
*.swo
82+
5183

5284
list_tree.sh
5385
tree.txt
54-
tmp.txt
86+
tmp.txt
87+
88+
# Temporary test and demo files
89+
temp_request.json
90+
test_api.py
91+
*_test_results.json
92+
demo_*.json
93+
demo_*.py
94+
discover_*.json
95+
discover_*.spec.json
96+
gap_detector.py
97+
generate_*.py
98+
run_product_spec.py

0 commit comments

Comments
 (0)