UNPKG

toloframework

Version:

Javascript/HTML/CSS compiler for Firefox OS or nodewebkit apps using modules in the nodejs style.

40 lines (26 loc) 783 B
/**************************************** A __WebPage__ has generally the `.html`extension. This is what we compile to produce our website or webapp. ****************************************/ module.exports = function(FileSystem) { /** * @param filename {string} - The filename is a path relative to the * `src/` folder of the current project. */ function Webpage(filename) { } /** * @return void */ Webpage.prototype.buildDebug = function(options) { }; /** * @return void */ Webpage.prototype.buildRelease = function(options) { }; //======================================== // PRIVATE functions //======================================== return Webpage; };