Socket
Socket
Sign inDemoInstall

broccoli-cssnext

Package Overview
Dependencies
71
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    broccoli-cssnext

cssnext plugin for Broccoli


Version published
Weekly downloads
1
decreased by-90.91%
Maintainers
1
Install size
23.6 MB
Created
Weekly downloads
 

Changelog

Source

0.2.0 - 2014-10-25

  • Changed: upgrade to cssnext v0.4.0

Readme

Source

broccoli-cssnext

NPM version Build Status Dependency Status devDependency Status

cssnext plugin for Broccoli

:root {
  --font-size: 16px;
}

@custom-media --mobile screen and (max-width: 320px);

@media (--mobile) {
  a {
    font-size: calc(var(--font-size) - 2px);
    color: hwb(270, 20%, 40%);
  }
}

@media screen and (max-width: 320px) {
  a {
    font-size: 14px;
    color: rgb(102, 51, 153);
  }
}

Installation

Use npm.

npm install --save-dev broccoli-cssnext

Usage

var cssnext = require('broccoli-cssnext');
tree = cssnext(tree, options);

API

cssnext(tree, options)

All cssnext options are available.

from option is automatically specified using source file path by default.

And map.inline option is always true if map option is enabled.

License

Copyright (c) 2014 Shinnosuke Watanabe

Licensed under the MIT License.

Keywords

FAQs

Last updated on 25 Oct 2014

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc