Skip to content

Commit

Permalink
Remove dev.sh and use set-pusher-suffix.sh directly
Browse files Browse the repository at this point in the history
  • Loading branch information
kidroca committed Apr 29, 2022
1 parent cf7305e commit 53f2ca0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
"scripts": {
"postinstall": "scripts/react-native-web.sh && cd desktop && npm install",
"clean": "react-native clean-project-auto",
"android": "npm run check-metro-bundler-port && scripts/dev.sh && react-native run-android",
"ios": "npm run check-metro-bundler-port && scripts/dev.sh && react-native run-ios",
"android": "npm run check-metro-bundler-port && scripts/set-pusher-suffix.sh && react-native run-android",
"ios": "npm run check-metro-bundler-port && scripts/set-pusher-suffix.sh && react-native run-ios",
"ipad": "npm run check-metro-bundler-port && react-native run-ios --simulator=\"iPad Pro (12.9-inch) (4th generation)\"",
"ipad-sm": "npm run check-metro-bundler-port && react-native run-ios --simulator=\"iPad Pro (9.7-inch)\"",
"start": "react-native start",
"web": "concurrently npm:web-proxy npm:web-server",
"web-server": "scripts/dev.sh && webpack-dev-server --open --config config/webpack/webpack.dev.js",
"web": "scripts/set-pusher-suffix.sh && concurrently npm:web-proxy npm:web-server",
"web-proxy": "node web/proxy.js",
"web-server": "webpack-dev-server --open --config config/webpack/webpack.dev.js",
"build": "webpack --config config/webpack/webpack.common.js --env.envFile=.env.production",
"build-staging": "webpack --config config/webpack/webpack.common.js --env.envFile=.env.staging",
"desktop": "scripts/dev.sh && node desktop/start.js",
"desktop": "scripts/set-pusher-suffix.sh && node desktop/start.js",
"desktop-build": "scripts/build-desktop.sh production",
"desktop-build-staging": "scripts/build-desktop.sh staging",
"ios-build": "fastlane ios build",
Expand Down
6 changes: 0 additions & 6 deletions scripts/dev.sh

This file was deleted.

0 comments on commit 53f2ca0

Please sign in to comment.