0.2.8 • Published 10 years ago

wrcompiler v0.2.8

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

Web-resource-compiler

Tool for automatically compiling all your CSS and JS files using an easy to setup configuration file.

Configuration Example

wrcompiler-config.json:

{
	"./resources/css/compiled.css": [
		{
			"name": "./resources/css/src/bootstrap.min.css",
			"options": ["concatonly"]
		},
		"./resources/css/src/home-stylesheet.css"
	],
	"./resources/js/compiled.js": [
		{
			"name": "./resources/js/src/jquery.min.js",
			"options": ["concatonly"]
		},
		"./resources/js/src/webapp.js"
	]
}

####Run wrcompiler wrcompiler-config.json

###Result Previous example results in two files being created: ./resources/css/compiled.css and ./resources/js/compiled.js. They will both contain a combination of two other files. In order, one as-is and the other one minified (uglified).

0.2.8

10 years ago

0.2.7

10 years ago

0.2.6

10 years ago

0.2.5

10 years ago

0.2.4

10 years ago

0.2.3

10 years ago

0.2.2

10 years ago

0.2.1

10 years ago