@xh/hoist 73.0.0-SNAPSHOT.1747334591072 → 73.0.0-SNAPSHOT.1747337729512
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/core/HoistBase.ts +3 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/core/HoistBase.ts
CHANGED
|
@@ -37,6 +37,8 @@ import {IEqualsComparer, IReactionDisposer} from 'mobx/dist/internal';
|
|
|
37
37
|
import {DebounceSpec, PersistableState, PersistenceProvider, PersistOptions, Some, XH} from './';
|
|
38
38
|
import {wait} from '@xh/hoist/promise';
|
|
39
39
|
|
|
40
|
+
declare const xhIsDevelopmentMode: boolean;
|
|
41
|
+
|
|
40
42
|
export interface HoistBaseClass {
|
|
41
43
|
new (...args: any[]): HoistBase;
|
|
42
44
|
isHoistBase: boolean;
|
|
@@ -61,7 +63,7 @@ export abstract class HoistBase {
|
|
|
61
63
|
}
|
|
62
64
|
|
|
63
65
|
constructor() {
|
|
64
|
-
if (
|
|
66
|
+
if (xhIsDevelopmentMode) {
|
|
65
67
|
wait().then(() => checkMakeObservable(this));
|
|
66
68
|
}
|
|
67
69
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "73.0.0-SNAPSHOT.
|
|
3
|
+
"version": "73.0.0-SNAPSHOT.1747337729512",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|