Commit 2e9af0a9 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Elimina opciones de node para compilación

parent acc19c20
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -23,12 +23,11 @@ module.exports = function(grunt) {
				var profile = pkg.dojoBuild,
					scriptPath = path.join(srcPath, 'dojo/dojo.js'),
					releaseDir = path.join(rootPath, distPath),
					nodeParams = ' --optimize_for_size --max_old_space_size=3000 --gc_interval=100 ',
					buildParams = ' load=build --profile "' + profile + '" --releaseDir "' + releaseDir + '"';

				return [
					'echo "\nBuilding application with ' + profile + ' to ' + releaseDir + '\n"',
					'node' + nodeParams + scriptPath + buildParams,
					'node ' + scriptPath + buildParams,
					'echo "\nBuild complete"'
				].join('; ');
			}