-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.json
32 lines (32 loc) · 1.26 KB
/
output.json
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
{
"blueprints": [{
"invoke": "editor_page.pr",
"write_using": "editor_page_path.pr",
"comment": "Main blueprint that is invoked for each page (email). This blueprint creates editor scaffold that contains email generated by email_template blueprint."
}, {
"invoke": "email_template.pr",
"write_using": "email_template_path.pr",
"comment": "Main blueprint that is invoked for each page (email). This blueprint creates actual email HTML that can be used anywhere."
},
{
"invoke": "index_page.pr",
"write_to": "index.html",
"comment": "Create entrypoint for the documentation. Will immediately redirect to the first page of the docs"
},
{
"invoke": "search_index.pr",
"write_to": "si.js",
"comment": "Create index data for the entire documentation to be used with fuse.js"
}
],
"resources": [{
"resource": "*",
"write_to": "assets",
"comment": "Copy all resources defined inside /asset directory into /asset directory on the output"
}],
"processors": [{
"type": "sass",
"input": "/src/*",
"output": "assets/css/styles.css"
}]
}