0.0.5 • Published 10 years ago

grunt-papo-scaffolding v0.0.5

Weekly downloads
1
License
-
Repository
github
Last release
10 years ago

grunt-papo-scaffolding

grunt-papo-scaffolding

module.exports = function(grunt) {

// INIT CONFIG
grunt.initConfig({ 

// SRC scaffolding
'project-scaffolding' : { 

	config : {

		"root": {

	      "assets" : {
	        "images" : {}
	      },

	      "html" : {
	        "files" : [
	          {"name" : "index", "type" : "html", "content" : "/html5"}
	        ]
	      },

	      "scrips" : { 
	        "files" : [
	          {"name" : "Application", "type" : "js", "content" : "//Application content"},
	          {"name" : "main", "type" : "js", "content" : "//Main content"}
	        ]
	      },

	      "styles" : { 
	        
	        "chrome" : { 
	          "files" : [
	            {"name" : "_all", "type" : "scss", "content" : "//chrome content"}
	          ]
	        },

	        "component" : { 
	          "files" : [
	            {"name" : "_all", "type" : "scss", "content" : "//component content"}
	          ]
	        },

	        "utils" : { 
	          "files" : [
	            {"name" : "_all", "type" : "scss", "content" : "//utils content"}
	          ]
	        },

	        "views" : { 
	          "files" : [
	            {"name" : "_all", "type" : "scss", "content" : "//views content"}
	          ]
	        }, 

	        "widgets" : { 
	          "files" : [
	            {"name" : "_all", "type" : "scss", "content" : "//widgets content"}
	          ]
	        },

	        "files" : [
	          {"name" : "app", "type" : "scss", "content" : "//Styles init"}
	        ]
	      } 
	  	}

	} 
});

// load all grunt tasks
require('grunt-papo-scaffolding')(grunt);

// By default, lint and run all tests. grunt.registerTask('init-src', 'project-scaffolding');

};

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago