Skip to content

Commit

Permalink
feat(index): Allow extensions for .postcssrc
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-ciniawsky committed Feb 13, 2017
1 parent 0b9c840 commit 65cc0d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var loadPlugins = require('./lib/plugins')
* @license MIT
*
* @module postcss-load-plugins
* @version 2.2.0
* @version 2.3.0
*
* @requires cosmiconfig
* @requires object-assign
Expand All @@ -37,7 +37,7 @@ module.exports = function pluginsrc (ctx, path, options) {

path = path ? resolve(path) : process.cwd()

options = assign({}, options)
options = assign({ rcExtensions: true }, options)

if (!ctx.env) process.env.NODE_ENV = 'development'

Expand Down

0 comments on commit 65cc0d0

Please sign in to comment.