@ethlete/core 4.31.0 → 5.0.0-next.0

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.
@@ -0,0 +1,29 @@
1
+ {
2
+ "$schema": "http://json-schema.org/schema",
3
+ "$id": "migrate-to-v5",
4
+ "title": "Migrate to Core v5",
5
+ "type": "object",
6
+ "properties": {
7
+ "skipFormat": {
8
+ "type": "boolean",
9
+ "description": "Skip formatting files after migration",
10
+ "default": false
11
+ },
12
+ "migrateViewportService": {
13
+ "type": "boolean",
14
+ "description": "Migrate viewport service to v5",
15
+ "default": true
16
+ },
17
+ "migrateCreateProvider": {
18
+ "type": "boolean",
19
+ "description": "Migrate create provider to v5",
20
+ "default": true
21
+ },
22
+ "migrateRouterStateService": {
23
+ "type": "boolean",
24
+ "description": "Migrate router state service to v5",
25
+ "default": true
26
+ }
27
+ },
28
+ "required": []
29
+ }