esoftplay 0.0.114-a → 0.0.114-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.
- package/esp.ts +4 -1
- package/package.json +1 -1
package/esp.ts
CHANGED
|
@@ -14,7 +14,7 @@ const ignoreWarns = [
|
|
|
14
14
|
"EventEmitter.removeListener",
|
|
15
15
|
"Got a component with the name 'm'",
|
|
16
16
|
"Did not receive response to shouldStartLoad in time",
|
|
17
|
-
"startLoadWithResult invoked with invalid lockldentifier
|
|
17
|
+
"startLoadWithResult invoked with invalid lockldentifier",
|
|
18
18
|
];
|
|
19
19
|
|
|
20
20
|
const err = console.error;
|
|
@@ -33,6 +33,9 @@ console.warn = (...arg) => {
|
|
|
33
33
|
warn(...arg);
|
|
34
34
|
};
|
|
35
35
|
LogBox.ignoreLogs(ignoreWarns);
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
36
39
|
let app = require('../../app.json');
|
|
37
40
|
let conf = require('../../config.json');
|
|
38
41
|
let lconf
|