UNPKG

783 BJavaScriptView Raw
1/****************************************
2A __WebPage__ has generally the `.html`extension.
3This is what we compile to produce our website or webapp.
4
5
6 ****************************************/
7
8module.exports = function(FileSystem) {
9 /**
10 * @param filename {string} - The filename is a path relative to the
11 * `src/` folder of the current project.
12 */
13 function Webpage(filename) {
14
15 }
16
17
18 /**
19 * @return void
20 */
21 Webpage.prototype.buildDebug = function(options) {
22
23 };
24
25 /**
26 * @return void
27 */
28 Webpage.prototype.buildRelease = function(options) {
29
30 };
31
32 //========================================
33 // PRIVATE functions
34 //========================================
35
36
37
38 return Webpage;
39};