mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
sass.js implements a version of Sass much older than the .sass (let alone currently recommended .scss) described at sass-lang.com, and has poor error handling so it mostly just ends up confusing users. sass.js's author now uses stylus/nib. We should probably remove the sass package, but let's not add another breaking change to 0.5.0.
22 lines
778 B
HTML
22 lines
778 B
HTML
<template name="pkg_sass">
|
|
{{#better_markdown}}
|
|
## `sass`
|
|
|
|
Sass is a CSS pre-processor with a minimal syntax and powerful dynamic
|
|
expresions. With the `sass` package installed, `.sass` files in your
|
|
application are automatically compiled to CSS and the results are
|
|
included in the client CSS bundle.
|
|
|
|
See <https://github.com/visionmedia/sass.js> for the JavaScript implementation
|
|
of the Sass language and <http://sass-lang.com/> for the original project.
|
|
|
|
{{#warning}}
|
|
The Sass JavaScript implementation used by Node is unmaintained and doesn't
|
|
implement the newest language syntax documented at <http://sass-lang.com/>. It
|
|
may be removed from a future version of Meteor; consider using [Less](#less) or
|
|
[Stylus](#stylus) instead.
|
|
{{/warning}}
|
|
|
|
{{/better_markdown}}
|
|
</template>
|