Skip to content

Commit

Permalink
Update lodash dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
kimroen committed Feb 21, 2016
1 parent ac52a24 commit 706384a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions index.js
Expand Up @@ -2,17 +2,17 @@
'use strict';

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

module.exports = {
name: 'ember-cli-autoprefixer',
included: function(app, parentAddon) {
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 || {}, {
enabled: true
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -53,7 +53,7 @@
],
"dependencies": {
"broccoli-autoprefixer": "^4.0.0",
"lodash": "^3.1.0",
"lodash": "^4.0.0",
"ember-cli-babel": "^5.1.5"
},
"ember-addon": {
Expand Down

0 comments on commit 706384a

Please sign in to comment.