Socket
Socket
Sign inDemoInstall

broccoli-css-lang-optimizer

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-css-lang-optimizer

Extract Lang-specific CSS rulesets to lang-specific files.


Version published
Weekly downloads
10
increased by900%
Maintainers
1
Weekly downloads
 
Created
Source

broccoli-css-lang-optimizer

This addon causes language specific rulesets in CSS to be extracted into per-language css files. The original CSS file has the language specific rulesets removed from it.

This plugin uses postcss-lang-optimizer and adapts it for use in Broccoli projects.

API

In your Brocfile.js:

var LangOptimizer = require("broccoli-css-lang-optimizer");
var inputNodes = ["static/css"]; // or wherever you put your CSS files.
var options = { }; // Options for the plugin. See below.
module.exports = new LangOptimizer(inputNodes, options);

Options

You can pass options to this plugin to control its behavior.

{
  // includeBaseFile controls whether the base css is included
  // in every language-specific output file. When set to `false`,
  // only the lang-specific selectors are output to the language
  // specific file. Defaults to `true`.
  includeBaseFile: true,
  // filenameForLang is optional, when omited the filename is "<basename>_<lang>.css"
  filenameForLang: function(baseFilename, lang) {
    return baseFilename.replace(".css", "-" + lang + ".css");
  },
  // Passed along to the underlying postcss-lang-optimizer plugin.  Defaults to false.
  subtags: false,
  // Ensures a file is written for each of these languages (and only these languages)
  // even if they are or are not specified in the source CSS.
  // If omitted, languages are discovered from the source CSS file.
  // This property can also be set to a function that returns an array of langs.
  langs: ["en", "de", "zh"],
  // The folowing langs will be RTL processed with rtlcss. Highly
  // recommend not setting `includeBaseFile` to `false` when using rtl flipping.
  rtlLangs: ["ar", "he"],
  // The following options will be passed to the rtlcss plugin:
  rtlOptions: { }
}

Keywords

FAQs

Package last updated on 26 Feb 2016

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