esoftplay 0.0.197 → 0.0.198
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/assets/locale/id.json +3 -0
- package/bin/cli.js +2 -2
- package/modules/lib/version_view.tsx +1 -1
- package/package.json +1 -1
package/assets/locale/id.json
CHANGED
package/bin/cli.js
CHANGED
|
@@ -396,7 +396,7 @@ function update() {
|
|
|
396
396
|
if (key != 'esoftplay') {
|
|
397
397
|
if (args[1] == 'all')
|
|
398
398
|
command('bun add ' + key)
|
|
399
|
-
command(
|
|
399
|
+
command(`bun ./node_modules/esoftplay/bin/mover.js ${key}`)
|
|
400
400
|
consoleSucces(key + " succesfully implemented!")
|
|
401
401
|
}
|
|
402
402
|
})
|
|
@@ -407,7 +407,7 @@ function update() {
|
|
|
407
407
|
}
|
|
408
408
|
|
|
409
409
|
function createMaster(module_name) {
|
|
410
|
-
if (module_name) {
|
|
410
|
+
if (module_name) {
|
|
411
411
|
const PATH = "../"
|
|
412
412
|
const index = `const moduleName = "` + module_name + `"
|
|
413
413
|
module.exports = { moduleName }`
|
|
@@ -4,7 +4,7 @@ import { LibTextstyle } from 'esoftplay/cache/lib/textstyle/import';
|
|
|
4
4
|
import esp from 'esoftplay/esp';
|
|
5
5
|
import { useTimeout } from 'esoftplay/timeout';
|
|
6
6
|
import * as Updates from 'expo-updates';
|
|
7
|
-
import
|
|
7
|
+
import { useEffect } from 'react';
|
|
8
8
|
import { ActivityIndicator, ImageBackground, View } from 'react-native';
|
|
9
9
|
|
|
10
10
|
export interface LibVersion_viewArgs {
|