esoftplay 0.0.261 → 0.0.265

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/build.js CHANGED
@@ -331,12 +331,12 @@ export default function App() {
331
331
  'react-fast-compare',
332
332
  'react-native-gesture-handler',
333
333
  'react-native-awesome-gallery',
334
- 'react-native-global-exception-handler',
335
334
  'react-native-image-crop-picker',
336
335
  'react-native-keyboard-controller',
337
336
  'react-native-mmkv',
338
337
  'react-native-reanimated',
339
338
  'react-native-safe-area-context',
339
+ "react-native-worklets",
340
340
  'react-native-screens',
341
341
  'react-native-webview',
342
342
  'shorthash',
package/bin/cli.js CHANGED
@@ -27,7 +27,6 @@ var args = process.argv.slice(2);
27
27
 
28
28
  // console.log(modpath, "sdofsjdofjsd")
29
29
  async function execution() {
30
- command('bun ./node_modules/esoftplay/bin/connector.js')
31
30
  const preload = await preload_api()
32
31
  console.log("PRELOAD", preload)
33
32
  if (preload) {
@@ -1090,7 +1089,11 @@ function buildPrepare(include = true) {
1090
1089
  }
1091
1090
  if (!fs.existsSync('./assets/esoftplaymodules')) {
1092
1091
  fs.mkdirSync('./assets/esoftplaymodules')
1093
- command('cp -r -v ./modules/* ./assets/esoftplaymodules')
1092
+ try {
1093
+ command('cp -r -v ./modules/* ./assets/esoftplaymodules')
1094
+ } catch (error) {
1095
+
1096
+ }
1094
1097
  }
1095
1098
 
1096
1099
  if (fs.existsSync('./node_modules/esoftplay/modules')) {
package/bin/mover.js CHANGED
@@ -107,6 +107,7 @@ if (fs.existsSync("../" + mainModule + "/" + moduleName)) {
107
107
  if (fs.existsSync("../" + mainModule + "/mover.js")) {
108
108
  shell("bun ../" + mainModule + "/mover.js", { stdio: 'inherit' })
109
109
  }
110
+ shell('bun ./node_modules/esoftplay/bin/connector.js')
110
111
  }
111
112
  function mergeDeep(target, ...sources) {
112
113
  target = Object(target);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esoftplay",
3
- "version": "0.0.261",
3
+ "version": "0.0.265",
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",