-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathinstall.json
More file actions
44 lines (44 loc) · 997 Bytes
/
install.json
File metadata and controls
44 lines (44 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"resources": {
"body": [
{
"type": "style",
"src": "./build/app.css"
},
{
"type": "script",
"src": "./build/app.js"
}
]
},
"preview": {
"handlers": [
{
"options": ["*"],
"execute": "INSTALL_SCOPE.setOptions(INSTALL_OPTIONS)"
}
]
},
"options": {
"properties": {
"location": {
"title": "Message location",
"order": 0,
"type": "object",
"format": "element",
"default": {
"selector": "body",
"method": "prepend"
}
},
"message": {
"title": "Message",
"description": "A short example message.",
"type": "string",
"format": "textarea",
"order": 1,
"default": "Welcome to Eager! This is our example app that utilizes Babel.\n\nDownload this app every time you want to make a new project with the latest JavaScript and CSS features."
}
}
}
}