Socket
Socket
Sign inDemoInstall

ember-cli-autoprefixer

Package Overview
Dependencies
75
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ember-cli-autoprefixer

Process styles in an ember-cli application using Autoprefixer


Version published
Weekly downloads
40K
decreased by-14.94%
Maintainers
1
Install size
8.26 MB
Created
Weekly downloads
 

Changelog

Source

v0.8.0

26 August 2017

Readme

Source

Autoprefixer for Ember CLI Build Status

This addon runs the styles of your Ember CLI-project through Autoprefixer.

Install

To install, run

ember install ember-cli-autoprefixer

Options

By default ember-cli-autoprefixer passes your projects target browsers (in Ember CLI >= 2.13.0) to autoprefixer. However, you can manually configure what browsers to target and other options by specifying them in your ember-cli-build.js (or Brocfile.js). An example:

var app = new EmberApp(defaults, {
  autoprefixer: {
    browsers: ['last 2 ios version'],
    cascade: false
  }
});

This would prefix styles as required by the two latest version of ios, and disable the cascade (see below).

You can disable Autoprefixer by passing in enabled: false.

Other options would also go here along with browsers, enabled and cascade.

You can read more about these settings and others over on the Autoprefixer page.

References

Keywords

FAQs

Last updated on 26 Aug 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc