esoftplay 0.0.116-a → 0.0.116-b

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.
Files changed (2) hide show
  1. package/bin/router.js +2 -2
  2. package/package.json +1 -1
package/bin/router.js CHANGED
@@ -588,12 +588,12 @@ function createRouter() {
588
588
  if (HookModules.includes(nav)) {
589
589
  item += "" +
590
590
  "import * as " + ucword(module) + ucword(task) + SuffixHooksProperty + " from '../../." + Modules[module][task] + "';\n" +
591
- "const " + ucword(module) + ucword(task) + " = React.memo(_" + ucword(module) + ucword(task) + ", isEqual); \n" +
591
+ "var " + ucword(module) + ucword(task) + " = React.memo(_" + ucword(module) + ucword(task) + ", isEqual); \n" +
592
592
  "export { " + ucword(module) + ucword(task) + SuffixHooksProperty + ", " + ucword(module) + ucword(task) + " };\n"
593
593
  } else if (UseLibs.includes(nav)) {
594
594
  item += "" +
595
595
  "import * as " + ucword(module) + ucword(task) + SuffixHooksProperty + " from '../../." + Modules[module][task] + "';\n" +
596
- "const " + ucword(module) + ucword(task) + " = _" + ucword(module) + ucword(task) + "; \n" +
596
+ "var " + ucword(module) + ucword(task) + " = _" + ucword(module) + ucword(task) + "; \n" +
597
597
  "export { " + ucword(module) + ucword(task) + SuffixHooksProperty + ", " + ucword(module) + ucword(task) + " };\n"
598
598
  } else {
599
599
  item += "export { _" + ucword(module) + ucword(task) + " as " + ucword(module) + ucword(task) + " };\n"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "esoftplay",
3
- "version": "0.0.116-a",
3
+ "version": "0.0.116-b",
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",