New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

broccoli-stylus-single

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

broccoli-stylus-single - npm Package Compare versions

Comparing version 0.1.2 to 0.2.0

.npmignore

7

package.json
{
"name": "broccoli-stylus-single",
"description": "Single-file-output Stylus compiler for Broccoli",
"version": "0.1.2",
"version": "0.2.0",
"author": {

@@ -32,5 +32,8 @@ "name": "Gabriel Grant",

"include-path-searcher": "^0.1.0",
"stylus": "~0.42.3",
"stylus": "~0.48.1",
"rsvp": "~3.0.6"
},
"peerDependencies": {
"stylus": "*"
},
"readmeFilename": "README.md",

@@ -37,0 +40,0 @@ "bugs": {

@@ -24,5 +24,5 @@ # broccoli-stylus-single

```js
var compileLess = require('broccoli-stylus-single');
var compileStylus = require('broccoli-stylus-single');
var outputTree = compileLess(inputTrees, inputFile, outputFile, options)
var outputTree = compileStylus(inputTrees, inputFile, outputFile, options)
```

@@ -43,3 +43,20 @@

```js
var appCss = compileLess(sourceTrees, 'myapp/app.styl', 'assets/app.css')
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:
```json
{
"name": "your-project",
"dependencies": {
"broccoli-stylus-single": "0.1.2",
"stylus": "0.x",
}
}
```

Sorry, the diff of this file is not supported yet

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