Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

docpad-plugin-cleancss

Package Overview
Dependencies
Maintainers
4
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

docpad-plugin-cleancss

Adds support to clean CSS in DocPad.

  • 2.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
4
Weekly downloads
 
Created
Source

Clean CSS Plugin for DocPad

Build Status NPM version NPM downloads Dependency Status Dev Dependency Status
Gratipay donate button Flattr donate button PayPayl donate button BitCoin donate button Wishlist browse button

Concatinate and minify CSS files with the cleancss: true meta data.

Install

docpad install cleancss

Usage

Create a CSS file with the cleancss option:

---
cleancss: true
---

body {
	background-color: black;
}

@import 'example.css';

Configure

Defaults

The default configuration for this plugin is the equivalant of adding the following clean-css options to your DocPad configuration file:

plugins:
	cleancss:
		# These are options passed to the clean-css dependency
		cleancssOpts:
			# * for keeping all (default), 1 for keeping first one only, 0 for
			# removing all
			keepSpecialComments: '*'

			# Whether to keep line breaks (default is false).
			keepBreaks: false

			# Turns on benchmarking mode measuring time spent on cleaning up.
			benchmark: false

			# Whether to process @import rules.
			processImport: true

			# Whether to skip URLs rebasing.
			noRebase: false

			# set to true to disable advanced optimizations.
			noAdvanced: false

			# Enables debug mode.
			debug: false

		# Disabled on development environments by default.
		environments:
			development:
				enabled: false

History

Discover the change history by heading on over to the HISTORY.md file.

Contribute

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Backers

Maintainers

These amazing people are maintaining this project:

Sponsors

No sponsors yet! Will you be the first?

Gratipay donate button Flattr donate button PayPayl donate button BitCoin donate button Wishlist browse button

Contributors

These amazing people have contributed code to this project:

Become a contributor!

License

Unless stated otherwise all works are:

and licensed under:

Keywords

FAQs

Package last updated on 05 Mar 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc