esoftplay 0.0.255 → 0.0.256
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/build.js +1 -1
- package/bin/cli.js +8 -8
- package/package.json +1 -1
package/bin/build.js
CHANGED
|
@@ -221,7 +221,7 @@ if (fs.existsSync(packjson)) {
|
|
|
221
221
|
const babelconf = `module.exports = function (api) {
|
|
222
222
|
api.cache(true);
|
|
223
223
|
let plugins = []
|
|
224
|
-
|
|
224
|
+
plugins.push("react-native-worklets/plugin")
|
|
225
225
|
return {
|
|
226
226
|
presets: ["babel-preset-expo"],
|
|
227
227
|
plugins
|
package/bin/cli.js
CHANGED
|
@@ -1236,7 +1236,7 @@ function build() {
|
|
|
1236
1236
|
[
|
|
1237
1237
|
{
|
|
1238
1238
|
name: "1. IOS (Development) - Simulator",
|
|
1239
|
-
cmd: "eas build --platform ios --profile development" + local,
|
|
1239
|
+
cmd: "eas build --platform ios --profile development --clear-cache" + local,
|
|
1240
1240
|
pre: () => {
|
|
1241
1241
|
configAvailable(true)
|
|
1242
1242
|
devClientPre(appjson)
|
|
@@ -1245,7 +1245,7 @@ function build() {
|
|
|
1245
1245
|
},
|
|
1246
1246
|
{
|
|
1247
1247
|
name: "2. IOS (Development) - Non Simulator",
|
|
1248
|
-
cmd: "eas build --platform ios --profile development_build" + local,
|
|
1248
|
+
cmd: "eas build --platform ios --profile development_build --clear-cache" + local,
|
|
1249
1249
|
pre: () => {
|
|
1250
1250
|
configAvailable(true)
|
|
1251
1251
|
devClientPre(appjson)
|
|
@@ -1254,7 +1254,7 @@ function build() {
|
|
|
1254
1254
|
},
|
|
1255
1255
|
{
|
|
1256
1256
|
name: "3. IOS (Preview) - Simulator",
|
|
1257
|
-
cmd: "eas build --platform ios --profile preview" + local,
|
|
1257
|
+
cmd: "eas build --platform ios --profile preview --clear-cache" + local,
|
|
1258
1258
|
pre: () => {
|
|
1259
1259
|
configAvailable(true)
|
|
1260
1260
|
devClientPos(appjson)
|
|
@@ -1263,7 +1263,7 @@ function build() {
|
|
|
1263
1263
|
},
|
|
1264
1264
|
{
|
|
1265
1265
|
name: "4. IOS (Preview) - Non Simulator",
|
|
1266
|
-
cmd: "eas build --platform ios --profile preview_build" + local,
|
|
1266
|
+
cmd: "eas build --platform ios --profile preview_build --clear-cache" + local,
|
|
1267
1267
|
pre: () => {
|
|
1268
1268
|
configAvailable(true)
|
|
1269
1269
|
devClientPos(appjson)
|
|
@@ -1272,7 +1272,7 @@ function build() {
|
|
|
1272
1272
|
},
|
|
1273
1273
|
{
|
|
1274
1274
|
name: "5. IOS (Production) - ipa",
|
|
1275
|
-
cmd: "eas build --platform ios --profile production" + local,
|
|
1275
|
+
cmd: "eas build --platform ios --profile production --clear-cache" + local,
|
|
1276
1276
|
pre: () => {
|
|
1277
1277
|
configAvailable(true)
|
|
1278
1278
|
devClientPos(appjson)
|
|
@@ -1281,7 +1281,7 @@ function build() {
|
|
|
1281
1281
|
},
|
|
1282
1282
|
{
|
|
1283
1283
|
name: "6. Android (Development) - apk",
|
|
1284
|
-
cmd: "eas build --platform android --profile development" + local,
|
|
1284
|
+
cmd: "eas build --platform android --profile development --clear-cache" + local,
|
|
1285
1285
|
pre: () => {
|
|
1286
1286
|
configAvailable(true)
|
|
1287
1287
|
devClientPre(appjson)
|
|
@@ -1290,7 +1290,7 @@ function build() {
|
|
|
1290
1290
|
},
|
|
1291
1291
|
{
|
|
1292
1292
|
name: "7. Android (Preview) - apk",
|
|
1293
|
-
cmd: "eas build --platform android --profile preview" + local,
|
|
1293
|
+
cmd: "eas build --platform android --profile preview --clear-cache" + local,
|
|
1294
1294
|
pre: () => {
|
|
1295
1295
|
configAvailable(true)
|
|
1296
1296
|
devClientPos(appjson)
|
|
@@ -1299,7 +1299,7 @@ function build() {
|
|
|
1299
1299
|
},
|
|
1300
1300
|
{
|
|
1301
1301
|
name: "8. Android (Production) - aab",
|
|
1302
|
-
cmd: "eas build --platform android --profile production" + local,
|
|
1302
|
+
cmd: "eas build --platform android --profile production --clear-cache" + local,
|
|
1303
1303
|
pre: () => {
|
|
1304
1304
|
configAvailable(true)
|
|
1305
1305
|
devClientPos(appjson)
|