mirror of
https://github.com/garrytan/gstack.git
synced 2026-08-23 14:32:33 +02:00
refactor: reorganize codebase — move browse CLI to browse/ directory
Restructure project layout: src/ → browse/src/, test/ → browse/test/. Add snapshot testing. Update docs, package.json, and skills integration. Add setup script and TODO tracking. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Haiku 4.5
parent
bfa6102679
commit
e9fbb664f8
Vendored
+24
@@ -0,0 +1,24 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Test Page - SPA</title>
|
||||
<style>
|
||||
body { font-family: sans-serif; }
|
||||
#app { padding: 20px; }
|
||||
.loaded { color: green; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app">Loading...</div>
|
||||
<script>
|
||||
console.log('[SPA] Starting render');
|
||||
console.warn('[SPA] This is a warning');
|
||||
console.error('[SPA] This is an error');
|
||||
setTimeout(() => {
|
||||
document.getElementById('app').innerHTML = '<h1 class="loaded">SPA Content Loaded</h1><p>Rendered by JavaScript</p>';
|
||||
console.log('[SPA] Render complete');
|
||||
}, 500);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user