mirror of
https://github.com/luxfi/wallet.git
synced 2026-07-27 03:37:41 +00:00
- Delete pkgs/{analytics,api,config,eslint-config,gating,lx,notifications,
prices,sessions,ui,utilities} — all identical to ~/work/lux/exchange
canonical (MD5-matched). Now published to npm at @l.x/*; consume from
there instead of vendoring.
- pkgs/wallet remains — this IS @luxfi/wallet (the uniswap-style extension
+ mobile wallet bones). Published at 1.0.10.
- Rewrite 3553 bare-path imports (uniswap/src/, ui/src/, utilities/src/,
lx/src/, lux/src/) → explicit @l.x/* across 725 files.
- apps/{extension,mobile}/package.json: workspace:^ → npm ^versions for
all @l.x/* / @luxfi/eslint-config; only @luxfi/wallet stays workspace.
- apps/{extension,mobile}/.eslintrc.js: RULES_DIR → node_modules/@l.x/lx/eslint_rules.
~315K line deletion. One canonical home: ~/work/lux/exchange.
23 lines
705 B
JavaScript
23 lines
705 B
JavaScript
// biome-ignore assist/source/organizeImports: we want to keep the import order
|
|
import './wdyr'
|
|
// biome-ignore assist/source/organizeImports: we want to keep the import order
|
|
import { isNonTestDev } from '@l.x/utils/src/environment/constants'
|
|
|
|
if (isNonTestDev) {
|
|
require('./ReactotronConfig')
|
|
}
|
|
|
|
>>>>>>> upstream/main
|
|
import 'react-native-gesture-handler'
|
|
import 'react-native-reanimated'
|
|
import 'src/logbox'
|
|
import 'src/polyfills'
|
|
<<<<<<< HEAD
|
|
=======
|
|
import { AppRegistry } from 'react-native'
|
|
// biome-ignore assist/source/organizeImports: we want to keep the import order
|
|
import App from 'src/app/App'
|
|
import AppConfig from './app.config'
|
|
|
|
AppRegistry.registerComponent(AppConfig.name, () => App)
|