Skip to content

Commit

Permalink
update build commands
Browse files Browse the repository at this point in the history
  • Loading branch information
zirgulis committed Feb 11, 2025
1 parent fcb3eb6 commit 1c6b3bc
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
"postinstall": "./scripts/postInstall.sh",
"clean": "./scripts/clean.sh",
"clean-standalone": "STANDALONE_NEW_DOT=true ./scripts/clean.sh",
"android": "./scripts/set-pusher-suffix.sh && ./scripts/run-build.sh --android",
"android-standalone": "./scripts/set-pusher-suffix.sh && STANDALONE_NEW_DOT=true ./scripts/run-build.sh --android",
"ios": "./scripts/set-pusher-suffix.sh && ./scripts/run-build.sh --ios",
"ios-standalone": "./scripts/set-pusher-suffix.sh && STANDALONE_NEW_DOT=true ./scripts/run-build.sh --ios",
"android": "./scripts/set-pusher-suffix.sh && concurrently \"npx react-native webpack-start --reset-cache\" \"wait-port 8081 && ./scripts/run-build.sh --android\"",
"android-standalone": "./scripts/set-pusher-suffix.sh && concurrently \"npx react-native webpack-start --reset-cache\" \"wait-port 8081 && STANDALONE_NEW_DOT=true ./scripts/run-build.sh --android\"",
"ios": "./scripts/set-pusher-suffix.sh && (npx react-native webpack-start & ./scripts/run-build.sh --ios)",
"ios-standalone": "./scripts/set-pusher-suffix.sh && (npx react-native webpack-start & STANDALONE_NEW_DOT=true ./scripts/run-build.sh --ios)",
"pod-install": "./scripts/pod-install.sh",
"pod-install-standalone": "STANDALONE_NEW_DOT=true ./scripts/pod-install.sh",
"ipad": "concurrently \"./scripts/run-build.sh --ipad\"",
"ipad-standalone": "concurrently \"STANDALONE_NEW_DOT=true ./scripts/run-build.sh --ipad\"",
"ipad-sm": "concurrently \"./scripts/run-build.sh --ipad-sm\"",
"ipad-sm-standalone": "concurrently \"STANDALONE_NEW_DOT=true ./scripts/run-build.sh --ipad-sm\"",
"ipad": "(npx react-native webpack-start & ./scripts/run-build.sh --ipad)",
"ipad-standalone": "(npx react-native webpack-start & STANDALONE_NEW_DOT=true ./scripts/run-build.sh --ipad)",
"ipad-sm": "(npx react-native webpack-start & ./scripts/run-build.sh --ipad-sm)",
"ipad-sm-standalone": "(npx react-native webpack-start & STANDALONE_NEW_DOT=true ./scripts/run-build.sh --ipad-sm)",
"start": "npx react-native start",
"web": "./scripts/set-pusher-suffix.sh && concurrently npm:web-proxy npm:web-server",
"web-proxy": "ts-node web/proxy.ts",
Expand Down

0 comments on commit 1c6b3bc

Please sign in to comment.