npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

postcss-webp-processing

v1.0.5

Published

PostCSS plugin to process all png and jpg files to webp

Downloads

40

Readme

PostCSS Webp Processing

PostCSS plugin to process all png and jpg files to webp files from a css file. This has been designed to work with webpacker and webpack

.my-background {
  background: url("~image/foo.jpg") no-repeat;
}

.my-border-image {
  border-image: url("~image/borders/bar.png");
}

.my-background-image {
  background-image: url("~image/foobar.jpeg");
}
.my-background {
  background: url("~image/foo.jpg") no-repeat;
}

.my-border-image {
  border-image: url("~image/borders/bar.png");
}

.my-background-image {
  background-image: url("~image/foobar.jpeg");
}

.webp .my-background {
  background: url("~webp/foo.webp") no-repeat;
}

.webp .webp.my-border-image {
  border-image: url("~webp/borders/bar.webp");
}

.webp .my-background-image {
  background-image: url("~webp/foobar.webp");
}

Usage

postcss([
  require("postcss-webp-processing")({
    /* ...your config */
  })
]);

or in postcss.config.js

const WebpProcessing = require("postcss-webp-processing");
module.exports = {
  plugins: [
    WebpProcessing({
      /* ...your config */
    })
  ]
};

| Option | Description | default | | :----------- | :------------------------------------------------------------------------------------------------------------ | :---------------------- | | environments | sets the enviroments that it will be triggered, can be string 'production' or array ['staging', 'production'] | 'all', | | imageFolder | The expected image folder | /~images/ | | quality | Quality of webp images | 60 | | replaceFrom | Files to replace | /.(jpe?g|png)/ | | replaceTo | optional either function replaceTo({ file, folder, url }) or regex | N/A | | resolvePath | Actual path to images | 'app/javascript/images' | | webpClass: | css class to be set for webp | '.webp' | | webpFolder | Where webp images will be generated | 'tmp/webp' | | webpPath: | Image path to be set in css | '~webp' |

Additional webpacker config:

const { resolve } = require("path");
const { environment } = require("@rails/webpacker");
const config = require("@rails/webpacker/package/config");

environment.config.set("resolve.alias", {
  images: resolve(config.source_path, "images"),
  webp: resolve("tmp", "webp")
});

Additional or your webpack.config.js:

const { resolve } = require('path');

module.exports = {
  mode: 'development',
  entry: './foo.js',
  output: {
    path: path.resolve(__dirname, 'dist'),
    filename: 'foo.bundle.js'
  }
  resolve.: {
    alias: {
      images: resolve('path/to/images', 'images'),
      webp: resolve('tmp', 'webp'),
    }
  }
};

To set for webp, either use modernzr or use this:

function checkWebP(callback) {
  var webP = new Image();

  const event = () => {
    callback(webP.height === 2);
  };

  webp.addEventListener("load", event);

  webp.addEventListener("error", event);

  webP.src =
    "data:image/webp;base64,UklGRjoAAABXRUJQVlA4IC4AAACyAgCdASoCAAIALmk0mk0iIiIiIgBoSygABc6WWgAA/veff/0PP8bA//LwYAAA";
}

checkWebP(function(support) {
  if (support) {
    document.body.classList.add("webp");
  } else {
    document.body.classList.add("no-webp");
  }
});

Bug reports

If you discover any bugs, feel free to create an issue on GitHub. Please add as much information as possible to help us fixing the possible bug. We also encourage you to help even more by forking and sending us a pull request.

https://github.com/djforth/postcss-webp-processing/issues

Contribute

If you'd like to contribute, postcss-webp-processing is written using babel and rollup in ES6.

Please make sure any additional code should be covered in tests (Jest).

If you need to run the test please use:


yarn test

or to rebuild the JS run:


yarn build

Maintainers

Adrian Stainforth (https://github.com/djforth)

License

postcss-webp-processing is an open source project falling under the MIT License. By using, distributing, or contributing to this project, you accept and agree that all code within the @morsedigital/select-filter project are licensed under MIT license.