| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 | module.exports = function(grunt) {	grunt.initConfig({		'meta': {			'testFile': 'tests/tests.js'		},		'uglify': {			'dist': {				'options': {					'report': 'gzip',					'preserveComments': 'some'				},				'files': {					'punycode.min.js': ['punycode.js']				}			}		},		// 'esmangle': {		// 	'dist': {		// 		'options': {		// 			'banner': require('fs').readFileSync('punycode.js', 'utf8').split('\n')[0] + '\n;'		// 		},		// 		'files': {		// 			'punycode.min.js': ['punycode.js']		// 		}		// 	}		// },		'shell': {			'options': {				'stdout': true,				'stderr': true,				'failOnError': true			},			'cover-html': {				'command': 'istanbul cover --report "html" --verbose --dir "coverage" "tests/tests.js"'			},			'cover-coveralls': {				'command': 'istanbul cover --verbose --dir "coverage" "tests/tests.js" && cat coverage/lcov.info | coveralls; rm -rf coverage/lcov*'			},			'test-narwhal': {				'command': 'echo "Testing in Narwhal..."; export NARWHAL_OPTIMIZATION=-1; narwhal "tests/tests.js"'			},			'test-phantomjs': {				'command': 'echo "Testing in PhantomJS..."; phantomjs "tests/tests.js"'			},			// Rhino 1.7R4 has a bug that makes it impossible to test in.			// https://bugzilla.mozilla.org/show_bug.cgi?id=775566			// To test, use Rhino 1.7R3, or wait (heh) for the 1.7R5 release.			'test-rhino': {				'command': 'echo "Testing in Rhino..."; rhino -opt -1 "tests.js"',				'options': {					'execOptions': {						'cwd': 'tests'					}				}			},			'test-ringo': {				'command': 'echo "Testing in Ringo..."; ringo -o -1 "tests/tests.js"'			},			'test-node': {				'command': 'echo "Testing in Node..."; node "tests/tests.js"'			},			'test-browser': {				'command': 'echo "Testing in a browser..."; open "tests/index.html"'			}		}	});	grunt.loadNpmTasks('grunt-shell');	grunt.loadNpmTasks('grunt-contrib-uglify');	//grunt.loadNpmTasks('grunt-esmangle');	grunt.registerTask('cover', 'shell:cover-html');	grunt.registerTask('ci', [		'shell:test-narwhal',		'shell:test-phantomjs',		'shell:test-rhino',		'shell:test-ringo',		'shell:test-node'	]);	grunt.registerTask('test', [		'ci',		'shell:test-browser'	]);	grunt.registerTask('default', [		'uglify',		'shell:test-node'	]);};
 |