Socket
Socket
Sign inDemoInstall

ember-cli-autoprefixer

Package Overview
Dependencies
77
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.0 to 0.6.0

.npmignore

5

CHANGELOG.md

@@ -0,1 +1,6 @@

## 0.6.0
+ Updated structure to the newest ember-cli project structures [#22](https://github.com/kimroen/ember-cli-autoprefixer/pull/22) and [#29](https://github.com/kimroen/ember-cli-autoprefixer/pull/29)
+ Allow using this addon inside other addons directly [#27](https://github.com/kimroen/ember-cli-autoprefixer/pull/27)
+ Updated `lodash` and `broccoli-autoprefixer` dependencies [#29](https://github.com/kimroen/ember-cli-autoprefixer/pull/29)
## 0.5.0

@@ -2,0 +7,0 @@ + Updated to the latest Autoprefixer (v6.0). See [their changelog](https://github.com/postcss/autoprefixer/releases/tag/6.0.0)

1

config/environment.js

@@ -0,1 +1,2 @@

/*jshint node:true*/
'use strict';

@@ -2,0 +3,0 @@

@@ -5,3 +5,3 @@ /* jshint node: true */

var autoprefixer = require('broccoli-autoprefixer');
var defaults = require('lodash').defaults;
var defaults = require('lodash/defaults');

@@ -12,2 +12,8 @@ module.exports = {

this.app = app;
if (typeof app.import !== 'function' && app.app) {
this.app = app = app.app;
}
this._super.included.apply(this, arguments);
this.options = defaults(this.app.options.autoprefixer || {}, {

@@ -14,0 +20,0 @@ enabled: true

2

LICENSE.md
The MIT License (MIT)
Copyright (c) 2015 Kim Røen
Copyright (c) 2016 Kim Røen

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

{
"name": "ember-cli-autoprefixer",
"version": "0.5.0",
"version": "0.6.0",
"description": "Process styles in an ember-cli application using Autoprefixer",

@@ -10,5 +10,5 @@ "directories": {

"scripts": {
"build": "ember build",
"start": "ember server",
"build": "ember build",
"test": "ember test"
"test": "ember try:testall"
},

@@ -29,22 +29,22 @@ "repository": {

"devDependencies": {
"broccoli-asset-rev": "^2.0.0",
"ember-cli": "^0.2.0",
"ember-cli-app-version": "0.3.1",
"ember-cli-babel": "^4.0.0",
"ember-cli-content-security-policy": "0.3.0",
"ember-cli-dependency-checker": "0.0.7",
"ember-cli-htmlbars": "^0.7.4",
"ember-cli-ic-ajax": "0.1.1",
"ember-cli-inject-live-reload": "^1.3.0",
"ember-cli-qunit": "0.3.8",
"ember-cli-uglify": "1.0.1",
"ember-data": "1.0.0-beta.15",
"ember-export-application-global": "^1.0.2",
"express": "^4.8.5",
"glob": "^4.0.5"
"broccoli-asset-rev": "^2.2.0",
"ember-cli": "2.3.0",
"ember-cli-app-version": "^1.0.0",
"ember-cli-babel": "^5.1.5",
"ember-cli-dependency-checker": "^1.2.0",
"ember-cli-htmlbars": "^1.0.1",
"ember-cli-htmlbars-inline-precompile": "^0.3.1",
"ember-cli-inject-live-reload": "^1.3.1",
"ember-cli-qunit": "^1.2.1",
"ember-cli-release": "0.2.8",
"ember-cli-sri": "^2.0.0",
"ember-cli-uglify": "^1.2.0",
"ember-disable-prototype-extensions": "^1.1.0",
"ember-disable-proxy-controllers": "^1.0.1",
"ember-export-application-global": "^1.0.4",
"ember-load-initializers": "^0.5.0",
"ember-resolver": "^2.0.3",
"ember-try": "^0.1.2",
"loader.js": "^4.0.0"
},
"dependencies": {
"broccoli-autoprefixer": "^4.0.0",
"lodash": "^3.1.0"
},
"keywords": [

@@ -57,2 +57,6 @@ "ember-addon",

],
"dependencies": {
"broccoli-autoprefixer": "^4.1.0",
"lodash": "^4.0.0"
},
"ember-addon": {

@@ -59,0 +63,0 @@ "configPath": "tests/dummy/config"

# Autoprefixer for Ember CLI [![Build Status](https://travis-ci.org/kimroen/ember-cli-autoprefixer.svg?branch=master)](https://travis-ci.org/kimroen/ember-cli-autoprefixer)
This addon runs the styles of your EmberCLI-project through
`autoprefixer`.
This addon runs the styles of your Ember CLI-project through
Autoprefixer.

@@ -26,9 +26,8 @@ ## Install

This would prefix styles as required by the two latest version of ios, and disable the cascade (see below).
The default value for `browsers` are `['> 1%', 'last 2 versions', 'Firefox ESR', 'Opera 12.1']`.
You can disable autoprefixer by passing in `enabled: false`.
You can disable Autoprefixer by passing in `enabled: false`.
Other options would also go here along with `browsers`.
Other options would also go here along with `browsers`, `enabled` and `cascade`.
You can read more about this setting and others [over on the autoprefixer page](https://github.com/postcss/autoprefixer#options).
You can read more about these settings and others [over on the Autoprefixer page](https://github.com/postcss/autoprefixer#options).

@@ -35,0 +34,0 @@ ## References

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