-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultibundler_cmd.txt
executable file
·14 lines (10 loc) · 1.06 KB
/
multibundler_cmd.txt
1
2
3
4
5
6
7
8
9
10
11
12
#android
#打android基础包
node ./node_modules/react-native/local-cli/cli.js bundle --platform android --dev false --entry-file platform.entry.js --bundle-output ./android/app/src/main/assets/platform.android.bundle --assets-dest android/app/src/main/res/ --config ./multi_bundle_config/platform.config.js
#打android业务包
node ./node_modules/react-native/local-cli/cli.js bundle --platform android --dev false --entry-file biz/biz1/index.js --bundle-output ./android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res/ --config multi_bundle_config/buz.config.js
#iOS
#打iOS基础包
node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --dev false --entry-file platformDep.config.js --bundle-output ./ios/platform.ios.bundle --assets-dest ./ios/ --config /{你的绝对路径}/platform.config.js
#打iOS业务包
node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --dev false --entry-file index.js --bundle-output ./ios/index.ios.bundle --assets-dest ./ios/ --config /{你的绝对路径}/buz.config.js