Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

eflex-broccoli-stylus-single

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eflex-broccoli-stylus-single

Single-file-output Stylus compiler for Broccoli

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

broccoli-stylus-single

The broccoli-stylus-single plugin compiles .styl files with Stylus.

This plugin is designed to compile a single, primary input file into a single output file, with a tree of @included dependencies. This differs from broccoli-stylus, which compiles each .styl file individually into a .css file and doesn't support @includes or a single output file depending on multiple inputs.

This code is based heavily on broccoli-sass

Installation

npm install --save-dev broccoli-stylus-single

Usage

var compileStylus = require('broccoli-stylus-single');

var outputTree = compileStylus(inputTrees, inputFile, outputFile, options)
  • inputTrees: An array of trees that act as the include paths for stylus. If you have a single tree, pass [tree].

  • inputFile: Relative path of the main .styl file to compile. This file must exist in one of the inputTrees.

  • outputFile: Relative path of the output CSS file.

  • options: A hash of options for stylus.

Example

var appCss = compileStylus(sourceTrees, 'myapp/app.styl', 'assets/app.css')

Stylus Version

This plugin uses a recent Stylus version, but can utilize a specific version of your choice. To require a specific version simply specify it in your project's package.json along with this plugin.

In this example package.json, the latest pre-1.0 version of Stylus will be used instead of the version bundled with this plugin:

{
  "name": "your-project",
  "dependencies": {
    "broccoli-stylus-single": "0.1.2",
    "stylus": "0.x",}
}

Keywords

FAQs

Package last updated on 22 Nov 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