Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-cli-postcss-fixed

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-cli-postcss-fixed

Use postcss to process your css with a large selection of JavaScript plug-ins.

  • 0.0.6
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ember-cli-postcss-fixed

DEPRECATED PLEASE USE ember-cli-css-preprocess

This is a modification of https://www.npmjs.com/package/ember-cli-postcss

It adds functionality for multiple file processing and for preprocessing using node-sass.

Use postcss to process your css with a large selection of JavaScript plug-ins.

Installation

npm install --save-dev ember-cli-postcss-fixed

Usage

Configuring Plug-ins

There are two steps to setting up postcss with ember-cli-postcss:

  1. install and require the node modules for any plug-ins
  2. provide the node module and plug-in options as a postcssOptions object in the Brocfile

The postcssOptions object should have a property plugins, which is an array of objects that contain a module property and an options property:

postcssOptions: {
  plugins: [
    {
      module: <module>,
      options: {
        ...
      }
    }
  ]
}

Example

Install the autoprefixer plugin:

npm i --save-dev autoprefixer

Specify some plugins in your ember-cli-build.js:

var EmberApp = require('ember-cli/lib/broccoli/ember-app');
var autoprefixer = require('autoprefixer');

var app = new EmberApp({
  postcssOptions: {
    plugins: [
      {
        module: autoprefixer,
        options: {
          browsers: ['last 2 version']
        }
      }
    ]
  }
});

module.exports = app.toTree();

Processing multiple files

If you need to process multiple files, it can be done by configuring the output paths in your ember-cli-build.js:

	var app = new EmberApp({
  outputPaths: {
    app: {
      css: {
        'app': '/assets/application-name.css',
        'themes/alpha': '/assets/themes/alpha.css'
      }
    }
  }
});

Preprocessing files with Sass

If you need to preprocess your files with node-sass you can enable it in your ember-cli-build.js:

	var app = new EmberApp({
        postcssOptions: {
          plugins: [
            {
              module: autoprefixer,
              options: {
                browsers: ['last 2 version']
              }
            }
        ],
        useSass: true
        }
      });

By default this ember-cli-postcss-fixed will process .css files. However you can specify the file extension like this:

	var app = new EmberApp({
        postcssOptions: {
          plugins: [
            {
              module: autoprefixer,
              options: {
                browsers: ['last 2 version']
              }
            }
        ],
        useSass: true,
        extension: 'scss'
        }
      });

If you want to import files outside your styles folder you can include them like this:

  var app = new EmberApp(defaults, {
    // Add options here
    postcssOptions: {
        useSass: true,
        extension: 'scss',
        plugins: [
            {
                module: require('autoprefixer'),
                options: {
                    browsers: ['last 2 versions']
                }
            }
        ],
        includePaths: [
            'bower_components/bootstrap-sass/assets/stylesheets'
        ]
    }
  });

After including you can import the files like this

@import "bootstrap"; //Imports 'bower_components/bootstrap-sass/assets/stylesheets/_bootstrap.scss'

Keywords

FAQs

Package last updated on 15 Dec 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc