@wovin/core 0.1.7 → 0.1.8
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/README.md +15 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# @wovin/core
|
|
2
|
+
|
|
3
|
+
Core utilities and types for Wovin applications.
|
|
4
|
+
|
|
5
|
+
## MobX Configuration
|
|
6
|
+
|
|
7
|
+
This package configures MobX with strict mode enabled (`enforceActions: 'always'`). To use non-strict mode in your application, override the configuration after importing:
|
|
8
|
+
|
|
9
|
+
```typescript
|
|
10
|
+
import { configure } from '@wovin/core/mobx'
|
|
11
|
+
|
|
12
|
+
configure({
|
|
13
|
+
enforceActions: 'never'
|
|
14
|
+
})
|
|
15
|
+
```
|