-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocpad.coffee
23 lines (21 loc) · 1.15 KB
/
docpad.coffee
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# DocPad Configuration File
# http://docpad.org/docs/config
# Define the DocPad Configuration
docpadConfig = {
progress: false
plugins:
cpuprofiler:
events: [
{start: "generateBefore", stop: "writeAfter", recordSamples: true},
{start: 'generateBefore', stop:'generateAfter', recordSamples: true},
{start: 'parseBefore', stop:'parseAfter', recordSamples: true},
{start: 'populateCollectionsBefore', stop:'populateCollections', recordSamples: true},
{start: 'contextualizeBefore', stop:'contextualizeAfter', recordSamples: true},
{start: 'renderBefore', stop:'renderAfter', recordSamples: true},
{start: 'renderCollectionBefore', stop:'renderCollectionAfter', recordSamples: true},
{start: 'writeBefore', stop:'writeAfter', recordSamples: true},
{start: 'serverBefore', stop:'serverAfter', recordSamples: true}
]
}
# Export the DocPad Configuration
module.exports = docpadConfig