docpad / docpad-plugin-cleancss

Concatinate and minify CSS files with the `cleancss: true` meta data
Other
1 stars 1 forks source link

Plugin doesn't seem to work #4

Open ndastur opened 9 years ago

ndastur commented 9 years ago

I know this sounds odd, but I have the docpad cleancss plugin installed properly. As in it is in my package.json etc and I followed the README.

My docpad.coffee config is:

docpadConfig = {
    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: '0'

                # Whether to keep line breaks
                keepBreaks: false

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

                # Whether to process @import rules.
                processImport: true

                # Set to false to skip URL rebasing
                rebase: true

                # Set to false to disable advanced optimizations
                advanced: false

                # Set to true to get minification statistics under stats property
                debug: false

            # Disabled on development environments by default.
            environments:
                development:
                    enabled: true
}

My css files are in src/static/css

Any pointers?

ghost commented 8 years ago

Was you able to get this to work?

I have the same issue.

Thanks