Files
meteor/docs/client/packages/sass.html
David Glasser 1fe86fa93a Add a warning about the brokenness of the sass package to the docs (issue #143).
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.
2012-10-15 11:21:21 -07:00

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>