(message:string)
| 956 | console.log(`${text.cyan + text.bold}[${times.join(":")}]${text.none} ${text.green}Total section time.${text.none}`); |
| 957 | }, |
| 958 | next = function node_apps_build_next(message:string):void { |
| 959 | let phase = order[type][0], |
| 960 | time:string = apps.humantime(false); |
| 961 | if (message !== "") { |
| 962 | console.log(time + message); |
| 963 | sectionTimer(time); |
| 964 | } |
| 965 | if (order[type].length < 1) { |
| 966 | verbose = true; |
| 967 | heading(`${text.none}All ${text.green + text.bold + type + text.none} tasks complete... Exiting clean!\u0007`); |
| 968 | apps.log([""], "", ""); |
| 969 | process.exit(0); |
| 970 | return; |
| 971 | } |
| 972 | order[type].splice(0, 1); |
| 973 | phases[phase](); |
| 974 | }, |
| 975 | // These are all the parts of the execution cycle, but their order is dictated by the 'order' object. |
| 976 | phases = { |
| 977 | // phase css merges the css for all supported HTML into a single file |
no test coverage detected