mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-03-10 06:00:19 +00:00
7 lines
357 B
Bash
7 lines
357 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Update imports in TypeScript files
|
||
|
find app -type f -name "*.ts" -o -name "*.tsx" | xargs sed -i '' 's|~/components/settings/settings.types|~/components/@settings/core/types|g'
|
||
|
|
||
|
# Update imports for specific components
|
||
|
find app -type f -name "*.ts" -o -name "*.tsx" | xargs sed -i '' 's|~/components/settings/|~/components/@settings/tabs/|g'
|