GithubHelp home page GithubHelp logo

postcss-configuration-example's Introduction

postcss-configuration-example

This example shows how to implement and use postcss in your projects. I added bootstrap.css to show file size difference before and after with postcss configuration.

Steps

Testing on this project

  • npm install to install all dependency.
  • npm run postcss to see how postcss works.

To Use In Your Project

  • type npm i -D postcss postcss-cli in your terminal, at root path of your project. This will add postcss and postcss-cli as dev dependencies.
  • npm i -D cssnano to add cssnano.
  • npm i -D @fullhuman/postcss-purgecss to add purgecss.
  • create postcss.config.js file at root path of your project.
  • add requirements as this example (see postcss.config.js) .
  • add plugins.
  • cssnano minifies at default preset. discardComments > removeAll: true option removes all comments in your css file.
  • purgecss removes unused css selectors. It reduces your css file dramatically.
  • At safelist standart option, we keep selectors that starts with display. You can use any regex to keep selectors you need (e.g. classes added with JS). This option is a string array.
  • There is postcss script at package.json. The template is as below:

post [global css file's path] -o (output) [generated css file's path by postcss]

postcss-configuration-example's People

Contributors

erkanaltinors avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.