Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions apps/cli/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
--- a/apps/cli/main.py
@@ -10,7 +10,7 @@
import os
import subprocess

-def build_project():
+def clean_build_artifacts():
try:
# Clean up previous build artifacts
- subprocess.run(['npm', 'run', 'clean'], check=True)
+ subprocess.run(['rm', '-rf', '.build'], check=True)
print("Build artifacts cleaned successfully.")
except subprocess.CalledProcessError as e:
print(f"Failed to clean build artifacts: {e}")
@@ -30,7 +30,8 @@ def api_get():
response = requests.get('https://api.example.com/data')
data = response.json()
Expand Down
1 change: 1 addition & 0 deletions lib/offline/precacheRoutes.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* Auto-generated precache routes manifest.
* Last Generated: 2026-08-10T01:13:20.078Z
* Last Generated: 2026-08-10T01:04:50.024Z
*/
export const PRECACHE_ROUTES: string[] = [
Expand Down
2 changes: 2 additions & 0 deletions public/sw.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
/**
* CryptoViz Service Worker (Auto-Generated Precache)
* Last Generated: 2026-08-10T01:13:20.078Z
* Last Generated: 2026-08-10T01:04:50.024Z
*
* NOTE: This file is automatically generated by scripts/generate-sw-precache.mjs during build.
* To update precached routes manually, run: npm run generate:sw or modify scripts/generate-sw-precache.mjs.
*/

const CACHE_NAME = 'cryptoviz-v1786324400078';
const CACHE_NAME = 'cryptoviz-v1786323890024';
const PRECACHE_URLS = [
"/",
Expand Down
Loading