esoftplay 0.0.129-z → 0.0.130
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
|
@@ -815,7 +815,7 @@ function build() {
|
|
|
815
815
|
output: process.stdout
|
|
816
816
|
});
|
|
817
817
|
const local = args[1] == 'local' ? ' --local' : ''
|
|
818
|
-
rl.question(local? "Pilih build type dengan mode LOCAL :\n\n":"Pilih build type :\n\n" + types.map((x) => x.name).join("\n") + '\n\nMasukkan nomor build type: ', function (idx) {
|
|
818
|
+
rl.question((local ? "Pilih build type dengan mode LOCAL :\n\n" : "Pilih build type :\n\n") + types.map((x) => x.name).join("\n") + '\n\nMasukkan nomor build type: ', function (idx) {
|
|
819
819
|
d = types[idx - 1]
|
|
820
820
|
rl.close();
|
|
821
821
|
});
|