mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Meteor's sass package wraps the "sass" NPM module, which implements a version of the Sass language much older than the .sass described at sass-lang.com (and doesn't implement the current recommended .scss language at all). It also has poor error handling, so it mostly just ends up confusing users. The module is unmaintained, and its author now uses stylus/nib (which Meteor supports: see the stylus package). If many users want Sass support, we could add this back in wrapping the "node-sass" package instead (which supports a more recent version of the Sass language), but for now, just remove it. Meteor still supports Stylus and Less out of the box. Fixes #143.
35 lines
729 B
HTML
35 lines
729 B
HTML
<template name="packages">
|
|
{{#better_markdown}}
|
|
|
|
<h1 id="packages">Packages</h1>
|
|
|
|
Meteor supports a variety of add-on packages and third party
|
|
libraries. While you can build great applications using only the Meteor
|
|
core functionality, optional packages can make development even faster
|
|
and better.
|
|
|
|
Packages can be added and removed from a Meteor project with:
|
|
|
|
$ meteor add <package_name>
|
|
|
|
and removed with:
|
|
|
|
$ meteor remove <package_name>
|
|
|
|
{{> pkg_accounts_ui}}
|
|
{{> pkg_amplify}}
|
|
{{> pkg_backbone}}
|
|
{{> pkg_bootstrap}}
|
|
{{> pkg_coffeescript}}
|
|
{{> pkg_d3}}
|
|
{{> pkg_force_ssl}}
|
|
{{> pkg_jquery}}
|
|
{{> pkg_less}}
|
|
{{> pkg_spiderable}}
|
|
{{> pkg_stylus}}
|
|
{{> pkg_showdown}}
|
|
{{> pkg_underscore}}
|
|
|
|
{{/better_markdown}}
|
|
</template>
|