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

ember-cli-sassjs

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-sassjs

Ember addon for Sass.js


Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created

ember-cli-sassjs

Ember addon for Sass.js from medialize.

Installation

ember install:addon ember-cli-sassjs

Usage

Import Sass from 'sassjs' wherever you need to run the compile function. Sass.js will initialize its worker the first time you include it.

Sass.compile() returns a promise, returning compiled css from the worker asynchronously.

For example:

...
import Sass from 'sassjs';

export default Ember.Controller.extend({
  actions: {
    convertSCSS: function(scss) {
      var _this = this;
      Sass.compile(scss).then(function(css) {
        _this.set('myCSS', css);
      });
    }
  }
});
...

FAQs

Package last updated on 12 Jan 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