Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 995 Bytes

README.md

File metadata and controls

42 lines (30 loc) · 995 Bytes

Anvil Cssmin Extension

This requires anvil.js version 0.9.* or greater.

Installation

anvil install anvil.cssmin

Usage

If this extension is installed and enabled, it can minify .css files using the cssmin node library.

Minifying All The Things

Add the following snippet to the build.json:

"anvil.cssmin": {
	"all": "true"
}

Inclusive Minification

Add the following snippet to the build.json to compile only the listed files:

"anvil.cssmin": {
	"include": [
		"./path/to/file1",
		"./path/to/file2",
		"./path/to/file4",
	]
}

Exclusive Minification

Add the following snippet to the build.json to compile everything but the listed files:

"anvil.cssmin": {
	"exclude": [
		"./path/to/file1",
		"./path/to/file2",
		"./path/to/file4",
	]
}

Note: you can also use minimatch style blobs to match multiple files for inclusion or exclusion. For example, the blob to match all files under a specific folder's tree would be: "/folderToMinify/**/*.css"