From 57f6d25ef28f08dca938fc93a81815ee7aa3abac Mon Sep 17 00:00:00 2001 From: David Glasser Date: Tue, 16 Jul 2013 17:28:03 -0700 Subject: [PATCH] Make api.add_files("f") default to ["client","server"]. --- tools/packages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packages.js b/tools/packages.js index 065f5718b6..dc68444b9c 100644 --- a/tools/packages.js +++ b/tools/packages.js @@ -1436,7 +1436,7 @@ _.extend(Package.prototype, { paths = paths ? [paths] : []; if (!(where instanceof Array)) - where = where ? [where] : []; + where = where ? [where] : ["client", "server"]; _.each(paths, function (path) { _.each(where, function (w) {