Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Jun 13, 2014
1 parent 9b5faf9 commit f5b32a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/assemble.js
Expand Up @@ -44,7 +44,7 @@ var Assemble = function() {
this.options.collections = mergeOptionsArrays.apply(this, [task.target, 'collections']);

// add default collections
this.options.collections = _.union(this.options.collections, ['tags', 'categories', { name: 'pages' }]);
this.options.collections = _.union(['tags', 'categories', { name: 'pages' }], this.options.collections);

this.options.collections = collection.normalize(this.options.collections);

Expand Down

0 comments on commit f5b32a3

Please sign in to comment.