esoftplay 0.0.256 → 0.0.257
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +9 -8
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -1220,6 +1220,7 @@ function build() {
|
|
|
1220
1220
|
}
|
|
1221
1221
|
|
|
1222
1222
|
const local = args[1] == 'local' ? ' --local' : ''
|
|
1223
|
+
const prelocal = args[1] == 'local' ? "EAS_LOCAL_BUILD_WORKINGDIR=~/expo-eas " : ""
|
|
1223
1224
|
const Named = args[2] || ""
|
|
1224
1225
|
const types = isWeb
|
|
1225
1226
|
?
|
|
@@ -1236,7 +1237,7 @@ function build() {
|
|
|
1236
1237
|
[
|
|
1237
1238
|
{
|
|
1238
1239
|
name: "1. IOS (Development) - Simulator",
|
|
1239
|
-
cmd: "eas build --platform ios --profile development --clear-cache" + local,
|
|
1240
|
+
cmd: prelocal + "eas build --platform ios --profile development --clear-cache" + local,
|
|
1240
1241
|
pre: () => {
|
|
1241
1242
|
configAvailable(true)
|
|
1242
1243
|
devClientPre(appjson)
|
|
@@ -1245,7 +1246,7 @@ function build() {
|
|
|
1245
1246
|
},
|
|
1246
1247
|
{
|
|
1247
1248
|
name: "2. IOS (Development) - Non Simulator",
|
|
1248
|
-
cmd: "eas build --platform ios --profile development_build --clear-cache" + local,
|
|
1249
|
+
cmd: prelocal + "eas build --platform ios --profile development_build --clear-cache" + local,
|
|
1249
1250
|
pre: () => {
|
|
1250
1251
|
configAvailable(true)
|
|
1251
1252
|
devClientPre(appjson)
|
|
@@ -1254,7 +1255,7 @@ function build() {
|
|
|
1254
1255
|
},
|
|
1255
1256
|
{
|
|
1256
1257
|
name: "3. IOS (Preview) - Simulator",
|
|
1257
|
-
cmd: "eas build --platform ios --profile preview --clear-cache" + local,
|
|
1258
|
+
cmd: prelocal + "eas build --platform ios --profile preview --clear-cache" + local,
|
|
1258
1259
|
pre: () => {
|
|
1259
1260
|
configAvailable(true)
|
|
1260
1261
|
devClientPos(appjson)
|
|
@@ -1263,7 +1264,7 @@ function build() {
|
|
|
1263
1264
|
},
|
|
1264
1265
|
{
|
|
1265
1266
|
name: "4. IOS (Preview) - Non Simulator",
|
|
1266
|
-
cmd: "eas build --platform ios --profile preview_build --clear-cache" + local,
|
|
1267
|
+
cmd: prelocal + "eas build --platform ios --profile preview_build --clear-cache" + local,
|
|
1267
1268
|
pre: () => {
|
|
1268
1269
|
configAvailable(true)
|
|
1269
1270
|
devClientPos(appjson)
|
|
@@ -1272,7 +1273,7 @@ function build() {
|
|
|
1272
1273
|
},
|
|
1273
1274
|
{
|
|
1274
1275
|
name: "5. IOS (Production) - ipa",
|
|
1275
|
-
cmd: "eas build --platform ios --profile production --clear-cache" + local,
|
|
1276
|
+
cmd: prelocal + "eas build --platform ios --profile production --clear-cache" + local,
|
|
1276
1277
|
pre: () => {
|
|
1277
1278
|
configAvailable(true)
|
|
1278
1279
|
devClientPos(appjson)
|
|
@@ -1281,7 +1282,7 @@ function build() {
|
|
|
1281
1282
|
},
|
|
1282
1283
|
{
|
|
1283
1284
|
name: "6. Android (Development) - apk",
|
|
1284
|
-
cmd: "eas build --platform android --profile development --clear-cache" + local,
|
|
1285
|
+
cmd: prelocal + "eas build --platform android --profile development --clear-cache" + local,
|
|
1285
1286
|
pre: () => {
|
|
1286
1287
|
configAvailable(true)
|
|
1287
1288
|
devClientPre(appjson)
|
|
@@ -1290,7 +1291,7 @@ function build() {
|
|
|
1290
1291
|
},
|
|
1291
1292
|
{
|
|
1292
1293
|
name: "7. Android (Preview) - apk",
|
|
1293
|
-
cmd: "eas build --platform android --profile preview --clear-cache" + local,
|
|
1294
|
+
cmd: prelocal + "eas build --platform android --profile preview --clear-cache" + local,
|
|
1294
1295
|
pre: () => {
|
|
1295
1296
|
configAvailable(true)
|
|
1296
1297
|
devClientPos(appjson)
|
|
@@ -1299,7 +1300,7 @@ function build() {
|
|
|
1299
1300
|
},
|
|
1300
1301
|
{
|
|
1301
1302
|
name: "8. Android (Production) - aab",
|
|
1302
|
-
cmd: "eas build --platform android --profile production --clear-cache" + local,
|
|
1303
|
+
cmd: prelocal + "eas build --platform android --profile production --clear-cache" + local,
|
|
1303
1304
|
pre: () => {
|
|
1304
1305
|
configAvailable(true)
|
|
1305
1306
|
devClientPos(appjson)
|