mirror of
				https://github.com/fooflington/selfdefined.git
				synced 2025-10-30 21:58:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			303 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			303 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| "use strict";
 | |
| 
 | |
| module.exports = function(grunt) {
 | |
| 
 | |
|   grunt.initConfig({
 | |
|     urequire: {
 | |
|       dist: {
 | |
|         path: "lib",
 | |
|         main: "haml",
 | |
|         dstPath: ".",
 | |
|         template: "AMD"
 | |
|       }
 | |
|     }
 | |
|   });
 | |
| 
 | |
|   grunt.loadNpmTasks("grunt-urequire");
 | |
|   grunt.registerTask("default", ["urequire"]);
 | |
| 
 | |
| };
 | 
