postcss-copy icon indicating copy to clipboard operation
postcss-copy copied to clipboard

An async postcss plugin to copy all assets referenced in CSS files to a custom destination folder and updating the URLs.

Results 3 postcss-copy issues
Sort by recently updated
recently updated
newest added

First off, thanks for the great plugin. I really love working with it. One minor issue for me is that I don't want asset files renamed. In order to accomplish...

My CSS is being built in an intermediate folder and postcss-copy resolves the name of the assets by using the following call: `path.dirname(decl.source.input.file)` The input file being into the "build"...

I can't find a way to have postcss-copy works with pure node. Here is my code: ``` let postcss = require('postcss'); postcss({ plugins: [ require('postcss-copy')({ dest: 'dist', basePath: '.' })...