Skip to content

Commit

Permalink
Merge pull request #102 from Bockit/deepclone-fix
Browse files Browse the repository at this point in the history
Deep clone fix to keep stylus nodes intact
  • Loading branch information
stevelacy committed Dec 19, 2014
2 parents 29a0d5a + 2e9c3f0 commit 63d2e3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var _ = require('lodash');
var PLUGIN_NAME = 'gulp-stylus';

module.exports = function (options) {
var opts = _.cloneDeep(options) || {};
var opts = _.assign({}, options);

return through.obj(function (file, enc, cb) {

Expand Down

0 comments on commit 63d2e3d

Please sign in to comment.