npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

postcss-sassy-import

v1.2.3

Published

A Sass-like import targeted at PostCSS pipelines

Downloads

79

Readme

postcss-sassy-import

npm version node version license

npm install postcss-sassy-import

requires Node 5.0+

Goal

This plugin aims to implement imports like Sass, with select extensions and further plugin opportunities. At base, this yields:

postcss-sassy-import is not limited to SCSS, however! It can run on any syntax that PostCSS supports, and can import vanilla CSS, SCSS, and JSON out of the box!

There's also a simple plugin system for adding new resolvers, formats, and load paths.

Why not postcss-import?

The authors of postcss-import are trying to follow the CSS specification, which means that support for extra features is second-class.

Usage

Write imports how you want to write them:

@import "foundation" !not-sassy;
@import "./local.css";
@import "config.json";
@import "reset";
@import "components/**/*.scss";

my-scope {
	@import "scoped-stuff";
}

Get output like you expect:

@import "foundation";
/* Contents of ./local.css */
/* contents of config.json */
/* contents of one of _reset.scss, reset.scss, reset.css or others */
/* contents of all scss files in components/ */

my-scope {
	/* contents of _scoped-stuff.scss */
}

Sass (or another preprocessor) can then handle the rest of the processing from there.

postcss-sassy-import will import files based on globs, and only import files once by default. This lets you declare stylesheet dependencies sanely and get no duplicates!

postcss-sassy-import can import plenty of useful things out of the box:

  • Sass (SCSS syntax)
  • Sass Partials (SCSS syntax)
  • CSS
  • JSON (as SCSS variables)

It's also possible to force reuse of imports, which will cascade into their imports as well:

main.scss

first-scope {
	@import "b";
}

second-scope {
	@import "b";
}

third-scope {
	@import "b" !multiple;
}

b.scss

@import "c";

a {
	color: red;
}

c.scss

div {
	color: blue;
}

Results in:

first-scope {
	div {
		color: blue;
	}

	a {
		color: red;
	}
}

second-scope {
}

third-scope {
	div {
		color: blue;
	}

	a {
		color: red;
	}
}

Import Flags

Imports can be tagged with "flags" to alter their behavior. Their usage is @import "path" !flag

!multiple

Allows the import to be run more than one time. This cascades to all imports inside the imported file, unless they have !once

!once

Explicitly marks an import as only being importable once.

!not-sassy

Tells postcss-sassy-import not to process this import. Useful for external Sass dependencies, like Foundation.

!unquote-strings (1.2.0+)

Only applicable when importing JSON

Causes all imported strings to be unquoted, suitable for dynamic content like colors.

gulp

If you use gulp, use postcss-sassy-import with gulp-postcss:

const gulp = require("gulp");
const postcss = require("gulp-postcss");
const sass = require("gulp-sass");
const sassyImport = require("postcss-sassy-import");

gulp.task("styles", () => {
	return gulp.src("src/main.scss")
		.pipe(postcss([ sassyImport({
			// Put your configuration here!
		}) ]))
		.pipe(sass())
		.pipe(gulp.dest("css/"))
});

Configuration

postcss-sassy-import takes in some configuration options and does some stuff with them.

Setting a list configuration here will add new options to the end of the list. To replace or remove existing values, add a plugin.

debug

  • boolean
  • default: false

Shows stack traces for errors, useful for developing postcss-sassy-import itself.

dedupe

  • boolean
  • default: true

Enable to deduplicate imports by default. Opt in and out of deduplication by using the !once and !multiple flags on imports, respectively.

formats

  • string[]
  • default: ["%", "%.scss", "_%.scss", "%.css", "%.json", "%/style.scss"]

A list of formats to try to resolve a path with. % in the string is replaced with the file name, and the directory of the file is prepended to the result.

loadPaths

  • (origin => string)[]
  • default: see source (loads current directory)

A list of paths to load from. Paths are specified with functions that are passed the file an import is being called from. They should return an absolute path to load from.

The built-in load path loads relative to the file an import is in, which looks like this:

origin => path.dirname(origin)

To add ./components to the list of paths to load, you could use:

origin => path.join(path.dirname(origin), "components")

To load files from node_modules in the root of your project, you might use:

origin => path.join(process.cwd(), "node_modules")

This load path, coupled with the default formats list, means that any installed module with a style.scss in it can be imported.

This relies on the Node.js 'path' library being loaded.

loaders

  • array
  • default: see source (loads scss, css, and json)

A loader is an object with two fields, test and method.

test is a function taking the path of the file, returning whether this loader is applicable.

method is a function that returns a Promise yielding a PostCSS Root element from a wrapped file.

Wrapped files have two fields:

  • contents: The contents of the file
  • path: The path to the file

plugins

  • array
  • default: []

Plugins are run when postcss-sassy-import is called. They are passed the options that were given and are expected to mutate them.

This is a good place to add new loaders and formats if they're sensitive to ordering.

postPlugins

  • array
  • default: []

An array of PostCSS plugins to run on imports before inlining them into the syntax tree.

These plugins are not run on the root file.

vfs

  • object
  • default: {}

An object defining virtual files to use in both single imports and globs. The key of the object is the file path, and the value is the contents of the file.

Contributing

Pull requests and issues welcome!

License

postcss-sassy-import is licnsed under the MIT license. See LICENSE.md for more details.