esoftplay 0.0.112-m → 0.0.112-n
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 +0 -6
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -569,9 +569,6 @@ function devClientPre(file) {
|
|
|
569
569
|
}
|
|
570
570
|
let app = JSON.parse(txt)
|
|
571
571
|
app.expo.name = "DC-" + app.expo.name
|
|
572
|
-
app.expo.slug = "DC-" + app.expo.slug
|
|
573
|
-
app.expo.android.package = app.expo.android.package + "-dc"
|
|
574
|
-
app.expo.ios.bundleIdentifier = app.expo.ios.bundleIdentifier + "-dc"
|
|
575
572
|
fs.writeFileSync(file, JSON.stringify(app, undefined, 2))
|
|
576
573
|
} else {
|
|
577
574
|
consoleError(file)
|
|
@@ -587,9 +584,6 @@ function devClientPos(file) {
|
|
|
587
584
|
}
|
|
588
585
|
let app = JSON.parse(txt)
|
|
589
586
|
app.expo.name = app.expo.name.replace("DC-", "")
|
|
590
|
-
app.expo.slug = app.expo.slug.replace("DC-", "")
|
|
591
|
-
app.expo.android.package = app.expo.android.package.replace("-dc", "")
|
|
592
|
-
app.expo.ios.bundleIdentifier = app.expo.ios.bundleIdentifier.replace("-dc", "")
|
|
593
587
|
fs.writeFileSync(file, JSON.stringify(app, undefined, 2))
|
|
594
588
|
} else {
|
|
595
589
|
consoleError(file)
|