DIR : /home/kozerus/public_html/pn/uize/site-source/js/Uize/Build/All.js

/home/kozerus/public_html/pn/uize/site-source/js/Uize/Build

/*______________
|       ______  |   U I Z E    J A V A S C R I P T    F R A M E W O R K
|     /      /  |   ---------------------------------------------------
|    /    O /   |    MODULE : Uize.Build.All Package
|   /    / /    |
|  /    / /  /| |    ONLINE : http://www.uize.com
| /____/ /__/_| | COPYRIGHT : (c)2010-2016 UIZE
|          /___ |   LICENSE : Available under MIT License or GNU General Public License
|_______________|             http://www.uize.com/license.html
*/

/* Module Meta Data
	type: Package
	importance: 7
	codeCompleteness: 100
	docCompleteness: 2
*/

/*?
	Introduction
		The =Uize.Build.All= module provides a method for running all the build scripts necessary for building the UIZE JavaScript Framework in the correct sequence.

		*DEVELOPERS:* `Chris van Rensburg`

		EXAMPLES
		......................................
		node build.js Uize.Build.All
		node build.js Uize.Build.All test=true
		......................................
*/

Uize.module ({
	name:'Uize.Build.All',
	required:'Uize.Build.Wsh',
	builder:function () {
		'use strict';

		return Uize.package ({
			perform:function (_params) {
				var
					_startTime = Uize.now (),
					_buildSequence = _params.buildSequence,
					_buildError
				;
				Uize.require (
					_buildSequence,
					function () {
						Uize.forEach (
							_buildSequence,
							function (_buildModuleName) {
								Uize.getModuleByName (_buildModuleName).perform (
									Uize.copy (_params,{logFilePath:(_params.logsPath || 'logs') + '/' + _buildModuleName + '.log'})
								);
							}
						);
						if (_params.test == 'true')
							_buildError = Uize.Build.Wsh.runScripts (_params.testSequence)
						;
						_params.silent == 'true' ||
							alert (
								_buildError
									? ('BUILD FAILED IN THE FOLLOWING SCRIPT:\n\n' + _buildError.script)
									: 'BUILD ALL COMPLETE!!! (duration: ' + Math.round (Uize.since (_startTime) / 1000) + 's)'
							)
						;
					}
				);
			}
		});
	}
});

//


koh5_pano



Your browser does not support the HTML5 canvas element.


Drag mouse to navigate.

Navigation





17.Aug.2010, Martin Wengenmayer