esoftplay 0.0.261 → 0.0.262

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
@@ -337,6 +337,7 @@ export default function App() {
337
337
  'react-native-mmkv',
338
338
  'react-native-reanimated',
339
339
  'react-native-safe-area-context',
340
+ "react-native-worklets",
340
341
  'react-native-screens',
341
342
  'react-native-webview',
342
343
  'shorthash',
package/bin/cli.js CHANGED
@@ -1090,7 +1090,11 @@ function buildPrepare(include = true) {
1090
1090
  }
1091
1091
  if (!fs.existsSync('./assets/esoftplaymodules')) {
1092
1092
  fs.mkdirSync('./assets/esoftplaymodules')
1093
- command('cp -r -v ./modules/* ./assets/esoftplaymodules')
1093
+ try {
1094
+ command('cp -r -v ./modules/* ./assets/esoftplaymodules')
1095
+ } catch (error) {
1096
+
1097
+ }
1094
1098
  }
1095
1099
 
1096
1100
  if (fs.existsSync('./node_modules/esoftplay/modules')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esoftplay",
3
- "version": "0.0.261",
3
+ "version": "0.0.262",
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",