Socket
Socket
Sign inDemoInstall

broccoli-cssnext

Package Overview
Dependencies
64
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
Created
Weekly downloads
 

Readme

Source

broccoli-cssnext

NPM version Build Status Dependency Status devDependency Status

cssnext plugin for Broccoli

:root {
  --font-size: 16px;
  --color: hwb(270, 20%, 40%);
}

@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

Install with npm.

npm i --save-dev broccoli-cssnext

Usage

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

API

cssnext(tree, options)

All cssnext options are available.

By default, from option is automatically specified using source file path.

License

Copyright (c) 2014 Shinnosuke Watanabe

Licensed under the MIT License.

Keywords

FAQs

Last updated on 07 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