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

hexo-renderer-bourbon

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hexo-renderer-bourbon

An up-to-date node-sass wrapper for Hexo that includes Bourbon mixins.

  • 1.0.4
  • latest
  • Source
  • npm
  • Socket score

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

Sass renderer for Hexo with Bourbon support

Build Status NPM Version NPM Dependencies Coverage Status

An up-to-date node-sass wrapper that includes Bourbon mixins.

Install

$ npm i hexo-renderer-bourbon

Usage

To enable Bourbon support you need to import it in your stylesheet.

@import 'bourbon';

Options

This renderer supports all the options exposed by node-sass.

imagePath

imagePath is a String that represents the public image path. When using the image-url() function in a stylesheet, this path will be prepended to the path you supply. eg. Given an imagePath of /path/to/images, background-image: image-url('image.png') will compile to background-image: url("/path/to/images/image.png")

indentedSyntax

indentedSyntax is a Boolean flag to determine if Sass Indented Syntax should be used to parse provided string or a file.

omitSourceMapUrl

omitSourceMapUrl is a Boolean flag to determine whether to include sourceMappingURL comment in the output file.

outputStyle

outputStyle is a String to determine how the final CSS should be rendered. Its value should be one of 'nested' or 'compressed'. Node-sass defaults to 'nested'. ('expanded' and 'compact' are not currently supported by libsass).

precision

precision is a Number that will be used to determine how many digits after the decimal will be allowed. For instance, if you had a decimal number of 1.23456789 and a precision of 5, the result will be 1.23457 in the final CSS.

sourceComments

sourceComments is a Boolean flag to determine what debug information is included in the output file.

sourceMap

This must be true even for embeded sourcemaps.

outFile

Must put the name of the output css file for sourcemaps to work.

sourceMapEmbed

sourceMapEmbed is a Boolean flag to determine whether to embed sourceMappingUrl as data URI.

sourceMapContents

sourceMapContents is a Boolean flag to determine whether to include contents in maps.

Example _config.yml

bourbon:
  outputStyle: nested
  precision: 8
  imagePath: images
  sourceComments: none
  indentedSyntax: false
  omitSourceMapUrl: false
  sourceMap: false
  outFile: '',
  sourceMapEmbed: false
  sourceMapContents: false

Keywords

FAQs

Package last updated on 27 Nov 2015

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