
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
broccoli-stylus-single
Advanced tools
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 @include
d dependencies. This
differs from broccoli-stylus,
which compiles each .styl
file individually into a .css
file and doesn't
support @include
s or a single output file depending on multiple inputs.
This code is based heavily on broccoli-sass
npm install --save-dev broccoli-stylus-single
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.
var appCss = compileStylus(sourceTrees, 'myapp/app.styl', 'assets/app.css')
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",
…
}
}
FAQs
Single-file-output Stylus compiler for Broccoli
The npm package broccoli-stylus-single receives a total of 179 weekly downloads. As such, broccoli-stylus-single popularity was classified as not popular.
We found that broccoli-stylus-single demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
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.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.