
Security News
Browserslist-rs Gets Major Refactor, Cutting Binary Size by Over 1MB
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
ember-cli-ruby-sass
Advanced tools
Use libsass to preprocess your ember-cli app's files, with support for include paths
This is a fork of ember-cli-ruby-sass. It is using Ruby's implementation os SASS instead of libsass.
Use node-sass to preprocess your ember-cli app's files, with support for source maps and include paths.
npm install --save-dev ember-cli-sass
By default this addon will compile app/styles/app.scss
into dist/assets/app.css
and produce
a source map for your delectation.
Or, if you want more control then you can specify options using the
sassOptions
config property in config/environment.js
:
ENV.sassOptions = {...}
.includePaths
: an array of include paths.sourceMap
: controls whether to generate sourceMaps, defaults to true
in development. The sourceMap file will be saved to options.outputFile + '.map'
.ext
: the extension to look for, defaults to scss
If you need to process multiple files, it can be done by configuring the output paths in your Brocfile.js
:
var app = new EmberApp({
outputPaths: {
app: {
css: {
'app': '/assets/application-name.css',
'themes/alpha': '/assets/themes/alpha.css'
}
}
}
});
In previous versions the sassOptions
config property could be added to the EmberApp
constructor in Brocfile.js
, although this is still supported it is recommended to use the above usage.
If you were using the .inputFile
and .outputFile
options, this is now done by configuring the output paths in your Brocfile.js
The following example assumes your bower packages are installed into bower_components/
.
Install some SASS:
bower install --save foundation
Specify some include paths in config/environment.js
:
ENV.sassOptions = {
includePaths: [
'bower_components/foundation/scss'
]
}
Import some deps into your app.scss:
@import 'foundation'; /* import everything */
/* or just import the bits you need: @import 'foundation/functions'; */
Be aware that there are some issues with source maps in broccoli-sass. The source maps it generates will at least show you the source file names and line number in your dev tools. When we've got a better solution in broccoli-sass you'll be able to click through to view and update the SASS files in the dev tools \o/.
FAQs
Use libsass to preprocess your ember-cli app's files, with support for include paths
The npm package ember-cli-ruby-sass receives a total of 4 weekly downloads. As such, ember-cli-ruby-sass popularity was classified as not popular.
We found that ember-cli-ruby-sass demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.
Security News
The official Go SDK for the Model Context Protocol is in development, with a stable, production-ready release expected by August 2025.