mirror of
https://github.com/stackblitz-labs/bolt.diy
synced 2025-06-23 02:16:08 +00:00
8 lines
357 B
Bash
Executable File
8 lines
357 B
Bash
Executable File
#!/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'
|