Skip to content

Commit

Permalink
Tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Joseph Ash committed Feb 27, 2014
1 parent 6171560 commit 408192b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Plumbing.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var all = require('plumber-all');
// var bower = require('plumber-bower');
var glob = require('plumber-glob');
var requirejs = require('plumber-requirejs');
var requireJS = require('plumber-requirejs');
var uglifyjs = require('plumber-uglifyjs')();
var write = require('plumber-write');

Expand Down Expand Up @@ -42,7 +42,7 @@ module.exports = function (pipelines) {
// As per: https://github.com/bower/bower/issues/1090
// bower('scribe'),
glob('./src/scribe.js'),
requirejs(requireJSConfig),
requireJS(requireJSConfig),
// Send the resource along these branches
all(
[uglifyjs, toBuildDir],
Expand Down Expand Up @@ -74,7 +74,7 @@ module.exports = function (pipelines) {
return function (name) {
pipelines['build:' + name] = [
glob('./src/plugins/' + name + '.js'),
requirejs(requireJSConfig),
requireJS(requireJSConfig),
// Send the resource along these branches
all(
[uglifyjs, toBuildDir],
Expand Down

0 comments on commit 408192b

Please sign in to comment.