This is a Sass build plugin for Meteor. It compiles Sass files with Dart Sass. With few alterations, this is the same documentation as for fourseven:scss on which it is based. Check your development server console for wrong syntaxes or Sass deprecation messages and correct your code accordingly.
Install using Meteor's package management system:
> meteor add activitree:scss
If you want to use it for your package, add it in your package control file's
onUse
block:
Package.onUse(function (api) {
...
api.use('activitree:scss');
...
});
Tested with Meteor 2.12 and above. It will probably work with most version since it now depends on Dart Sass
Without any additional configuration after installation, this package automatically finds all .scss
and .sass
files in your project, compiles them with Dart Sass, and includes the resulting CSS in the application bundle that Meteor sends to the client. The files can be anywhere in your project.
There are two different types of files recognized by this package:
- Sass sources (all
*.scss
and*.sass
files that are not imports) - Sass imports/partials, which are:
- files that are prefixed with an underscore
_
- marked as
isImport: true
in the package'spackage.js
file:api.addFiles('x.scss', 'client', {isImport: true})
- Starting from Meteor 1.3, all files in a directory named
imports/
- files that are prefixed with an underscore
The source files are compiled automatically (eagerly loaded). The imports are not loaded by themselves; you need to import them from one of the source files to use them.
The imports are intended to keep shared mixins and variables for your project, or to allow your package to provide several components which your package's users can opt into one by one.
Each compiled source file produces a separate CSS file. (The
standard-minifiers
package merges them into one file afterwards.)
You can use the regular @import
syntax to import any Sass files: sources or
imports.
Besides the usual way of importing files based on the relative path in the same package (or app), you can also import files from other packages or apps with the following syntax.
Importing styles from a different package:
@import "{my-package:pretty-buttons}/buttons/_styles.scss";
.my-button {
// use the styles imported from a package
@extend .pretty-button;
}
Importing styles from the target app:
@import "{}/client/styles/imports/colors.scss";
.my-nav {
// use a color from the app style pallete
background-color: @primary-branding-color;
}
This can also conveniently be used to import styles from npm modules for example:
@import "{}/node_modules/module-name/stylesheet";
Note that Meteor 1.7 introduced a change so that files in node_modules
aren't automatically compiled any more.
This requires you to add a symlink inside the imports
directory to the package in order for compilation to work.
E.g.
meteor npm install the-package
cd imports
ln -s ../node_modules/the-package .
See the meteor changelog for more information.
Sometimes a 3rd party module uses import paths that assume that the compiler is
configured with specific includePaths
option (e.g. Ionic, Bootstrap, etc.):
@import "ionicons-icons"; // This file is actually placed in another npm module!
Create a configuration file named "scss-config.json
" at the root of your Meteor
project to specify include paths that the compiler should use as an extra
possibility to resolve import paths:
{
"includePaths": [
"{}/node_modules/ionicons/dist/scss/"
]
}
These are on by default.
Follow the official documentation for postcss with Meteor: https://docs.meteor.com/packages/standard-minifier-css.html#Post-CSS