@pronto-tools-and-more/files 5.5.0 → 5.6.0
Sign up to get free protection for your applications and to get access to all the features.
- package/files/schema/pronto-schema.json +30 -0
- package/files/schema/views-item-schema.json +12225 -0
- package/files/schema/views-schema.json +12225 -0
- package/package.json +1 -1
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema#",
|
3
|
+
"title": "Configuration for pronto",
|
4
|
+
"type": "object",
|
5
|
+
"properties": {
|
6
|
+
"appId": {
|
7
|
+
"type": "string",
|
8
|
+
"description": "App Id of the project"
|
9
|
+
},
|
10
|
+
"errorColor": {
|
11
|
+
"type": "string",
|
12
|
+
"description": "Color of SCSS errors"
|
13
|
+
},
|
14
|
+
"platform": {
|
15
|
+
"type": "string",
|
16
|
+
"description": "Platform to use for the preview",
|
17
|
+
"enum": ["ios", "android", "web"]
|
18
|
+
},
|
19
|
+
"mode": {
|
20
|
+
"type": "string",
|
21
|
+
"description": "Whether or not to use include all experience builder files in version control",
|
22
|
+
"enum": ["slim", "fat"]
|
23
|
+
},
|
24
|
+
"splitViews": {
|
25
|
+
"type": "boolean",
|
26
|
+
"description": "Whether or not to use multiple files for views.json",
|
27
|
+
"default": false
|
28
|
+
}
|
29
|
+
}
|
30
|
+
}
|