esoftplay 0.0.120-u → 0.0.120-v

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 CHANGED
@@ -650,7 +650,7 @@ function cacheBuild(include = true) {
650
650
  command('rm -rf ./esoftplay_cache')
651
651
  }
652
652
  fs.mkdirSync('./esoftplay_cache')
653
- command('cp -r ./node_modules/esoftplay/cache ./esoftplay_cache')
653
+ command('cp -r ./node_modules/esoftplay ./esoftplay_cache')
654
654
  } else {
655
655
  command('rm -rf ./esoftplay_cache')
656
656
  }
package/bin/router.js CHANGED
@@ -47,11 +47,10 @@ if (!fs.existsSync(typesDir)) {
47
47
  }
48
48
 
49
49
  if (fs.existsSync('./esoftplay_cache')) {
50
- execSync("mv ./esoftplay_cache ./node_modules/esoftplay/cache")
50
+ execSync("yes | cp -r ./esoftplay_cache ./node_modules/esoftplay")
51
51
  return
52
52
  }
53
53
 
54
-
55
54
  /* FETCH ALL SCRIPTS */
56
55
  var Modules = {}; // Object semua module/task yang bisa dipanggil
57
56
  var HookModules = []
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esoftplay",
3
- "version": "0.0.120-u",
3
+ "version": "0.0.120-v",
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",