esoftplay 0.0.112-j → 0.0.112-k
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 +1 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -715,7 +715,7 @@ function doInc(file) {
|
|
|
715
715
|
consoleSucces(file + " Versi yang lama " + app.expo.version)
|
|
716
716
|
app.expo.android.versionCode = lastVersion + 1
|
|
717
717
|
app.expo.ios.buildNumber = String(lastVersion + 1)
|
|
718
|
-
app.expo.runtimeVersion = lastVersion + 1
|
|
718
|
+
app.expo.runtimeVersion = String(lastVersion + 1)
|
|
719
719
|
app.expo.version = args[1] || ('0.' + String(lastVersion + 1))
|
|
720
720
|
consoleSucces(file + " Berhasil diupdate ke versi " + app.expo.version)
|
|
721
721
|
fs.writeFileSync(file, JSON.stringify(app, undefined, 2))
|