Skip to content

Commit e781d9c

Browse files
authored
Native: reordered scripts in package json (#1623)
1 parent 0147576 commit e781d9c

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

apps/expo/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,32 @@
55
"private": true,
66
"scripts": {
77
"reset": "react-native-clean-project",
8+
"remove-xcode-env-local-file": "rm ios/.xcode.env.local",
89
"start": "yarn with-env npx expo start -c",
10+
"lint": "eslint ./app",
11+
"lint:fix": "eslint ./app --fix",
12+
"with-env": "dotenv -f .env --",
913
"start:dev-client": "yarn with-env yarn expo:prebuild && yarn expo start --dev-client",
1014
"expo:prebuild": "yarn with-env yarn expo prebuild --skip-dependency-update react-native,react",
1115
"android": "yarn with-env expo run:android",
16+
"ios": "yarn with-env expo run:ios",
1217
"eas:build:dev:simulator:ios:local": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:simulator --platform ios --local",
18+
"eas:build:dev:simulator:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:simulator --platform ios",
1319
"eas:build:dev:simulator:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:simulator --platform android",
20+
"eas:build:dev:device:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:device --platform ios",
21+
"eas:build:dev:device:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:device --platform android",
1422
"eas:build:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development --platform android",
15-
"eas:submit:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas submit --profile staging --platform android",
16-
"eas:update:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas update --channel staging --platform android",
23+
"eas:build:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development --platform ios",
1724
"eas:build:staging:android": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas build --profile staging --platform android",
25+
"eas:build:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas build --profile staging --platform ios",
26+
"eas:submit:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas submit --profile staging --platform android",
1827
"eas:submit:staging:android": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas submit --profile staging --platform android",
19-
"eas:update:staging:android": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas update --channel staging --platform android",
20-
"eas:build:dev:simulator:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:simulator --platform ios",
21-
"eas:build:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development --platform ios",
22-
"eas:build:dev:device:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:device --platform ios",
23-
"eas:build:dev:device:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas build --profile development:device --platform android",
2428
"eas:submit:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas submit --profile staging --platform ios",
25-
"eas:update:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas update --channel staging --platform ios",
26-
"eas:build:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas build --profile staging --platform ios",
2729
"eas:submit:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas submit --profile staging --platform ios",
28-
"eas:update:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas update --channel staging --platform ios",
29-
"ios": "yarn with-env expo run:ios",
30-
"with-env": "dotenv -f .env --",
31-
"lint": "eslint ./app",
32-
"lint:fix": "eslint ./app --fix",
33-
"remove-xcode-env-local-file": "rm ios/.xcode.env.local"
30+
"eas:update:dev:android": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas update --channel staging --platform android",
31+
"eas:update:staging:android": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas update --channel staging --platform android",
32+
"eas:update:dev:ios": "cross-env NODE_ENV=development APP_ENV=development yarn with-env eas update --channel staging --platform ios",
33+
"eas:update:staging:ios": "cross-env NODE_ENV=staging APP_ENV=staging yarn with-env eas update --channel staging --platform ios"
3434
},
3535
"dependencies": {
3636
"@babel/runtime": "^7.27.3",

0 commit comments

Comments
 (0)