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.
@@ -85,6 +85,9 @@
85
85
  "version_available": "A new version is available",
86
86
  "btn_update": "Update Sekarang"
87
87
  },
88
+ "lib/version_view": {
89
+ "msg": "A new version is available"
90
+ },
88
91
  "lib/video": {
89
92
  "missing_code": "Missing Youtube Code in Props"
90
93
  },
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("cd node_modules/" + key + " && bun mover.js")
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 React, { useEffect } from 'react';
7
+ import { useEffect } from 'react';
8
8
  import { ActivityIndicator, ImageBackground, View } from 'react-native';
9
9
 
10
10
  export interface LibVersion_viewArgs {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esoftplay",
3
- "version": "0.0.197",
3
+ "version": "0.0.198",
4
4
  "description": "embedding data from esoftplay framework (web based) into mobile app",
5
5
  "main": "cache/index.js",
6
6
  "types": "../../index.d.ts",