esoftplay 0.0.259 → 0.0.260
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 +6 -6
- package/package.json +1 -1
package/bin/build.js
CHANGED
|
@@ -88,7 +88,7 @@ if (fs.existsSync(packjson)) {
|
|
|
88
88
|
writeFileSyncWithLog(conflivejson, JSON.stringify($config, null, 2));
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
-
let $appjson = {}
|
|
91
|
+
let $appjson = {}
|
|
92
92
|
if (fs.existsSync(appjson))
|
|
93
93
|
try {
|
|
94
94
|
let appj = fs.readFileSync(appjson, 'utf8') || {}
|
|
@@ -145,8 +145,8 @@ if (fs.existsSync(packjson)) {
|
|
|
145
145
|
"./raw/plugins/withAndroidVerifiedLinksWorkaround",
|
|
146
146
|
]
|
|
147
147
|
|
|
148
|
-
if (fs.existsSync("
|
|
149
|
-
execSync("
|
|
148
|
+
if (fs.existsSync("./node_modules/esoftplay/assets/plugins")) {
|
|
149
|
+
execSync("mkdir -p ./raw && cp -r ./node_modules/esoftplay/assets/plugins ./raw");
|
|
150
150
|
} else {
|
|
151
151
|
console.warn("Skipping copy: ./node_modules/esoftplay/assets/plugins not found");
|
|
152
152
|
}
|
|
@@ -359,9 +359,9 @@ export default function App() {
|
|
|
359
359
|
expoLib.forEach((exlib) => {
|
|
360
360
|
if (fs.existsSync("../../node_modules/" + exlib)) {
|
|
361
361
|
console.log(exlib + " is Exist, Skipped")
|
|
362
|
-
if (exlib == '@expo/vector-icons') {
|
|
363
|
-
|
|
364
|
-
}
|
|
362
|
+
// if (exlib == '@expo/vector-icons') {
|
|
363
|
+
// installExpoLibs.push(exlib)
|
|
364
|
+
// }
|
|
365
365
|
} else {
|
|
366
366
|
console.log("⚙⚙⚙ INSTALLING ... " + exlib)
|
|
367
367
|
installExpoLibs.push(exlib)
|