Socket
Socket
Sign inDemoInstall

@savingsunited/postcss-disable-critical-plugin

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@savingsunited/postcss-disable-critical-plugin

PostCSS plugin for disabling critical CSS extraction on dev environments


Version published
Weekly downloads
384
decreased by-6.8%
Maintainers
3
Weekly downloads
 
Created
Source

Postcss disable-critical-plugin

PostCSS Plugin for disabling postcss-critical-css on dev environments.

Install

npm install postcss-disable-critical-plugin

Example

postcss config
/* eslint-env node */

let plugins = {
  'postcss-disable-critical-plugin': {}
};

if (process.env.NODE_ENV === 'production') {
  let fs = require('fs');
  let outputPath = "critical";

  if (!fs.existsSync(outputPath)) {
    fs.mkdirSync(outputPath, {recursive: true}, (err) => {
      if (err) throw err;
    });
  }

  plugins = {
    'postcss-flexbugs-fixes': {},
    'postcss-critical-css': {
      outputPath: outputPath,
      outputDest: "critical.css",
      preserve: false
    },
    'postcss-csso': {},
    'postcss-preset-env': {
      autoprefixer: {
        flexbox: 'no-2009'
      },
      stage: 3
    }
  };
}

module.exports = {
  plugins: plugins
};

Initial code

@critical common.css {
  .page-title {
    margin: 30px 0 28px;
    font-weight: 700;
    font-size: 36px;
  }

/* Unnecessary comment */

  @media (max-width: 767px) {
    .page-title {
      font-size: 26px;
      line-height: 1.1;
    }
  }
}

Result:

  .page-title {
    margin: 30px 0 28px;
    font-weight: 700;
    font-size: 36px;
  }

  @media (max-width: 767px) {
    .page-title {
      font-size: 26px;
      line-height: 1.1;
    }
  }

Usage

Check you project for existed PostCSS config: postcss.config.js in the project root, "postcss" section in package.json or postcss in bundle config.

If you already use PostCSS, add the plugin to plugins list:

module.exports = {
  plugins: [
+   require('postcss-disable-critical-plugin'),
    require('autoprefixer')
  ]
}

If you do not use PostCSS, add it according to official docs and set this plugin in settings.

License

This project is licensed under GPL-3.0.

Keywords

FAQs

Package last updated on 01 Sep 2020

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