From 44c3a8bf0498f80bae5414494b884571389abd0f Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Mon, 3 Aug 2015 09:36:59 -0700 Subject: [PATCH 01/21] username -> user for 'ftp' --- ftp/ftp-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ftp/ftp-tests.ts b/ftp/ftp-tests.ts index 2e37e53f9..57b706182 100644 --- a/ftp/ftp-tests.ts +++ b/ftp/ftp-tests.ts @@ -19,8 +19,8 @@ c.connect(); c.connect({ host: "127.0.0.1", - port: 21, - username: "Boo", + port: 21, + user: "Boo", password: "secret" }); From 3f6ae4eabec3e6cddd71d0730127603131de2bbb Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Mon, 3 Aug 2015 09:44:45 -0700 Subject: [PATCH 02/21] Added 'base' for 'gulp-watch' tests. --- gulp/gulp.d.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/gulp/gulp.d.ts b/gulp/gulp.d.ts index d7a0dba57..13c12a811 100644 --- a/gulp/gulp.d.ts +++ b/gulp/gulp.d.ts @@ -28,6 +28,13 @@ declare module gulp { */ buffer?: boolean; + /** + * The base path of a glob. + * + * Default is everything before a glob starts. + */ + base?: string; + /** * The current working directory in which to search. * Defaults to process.cwd(). From 01ca8013b4e15de9531fe5ba58e5a08e6f7a1529 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Mon, 3 Aug 2015 09:49:41 -0700 Subject: [PATCH 03/21] summary -> description for 'microsoft-live-connect' --- microsoft-live-connect/microsoft-live-connect-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microsoft-live-connect/microsoft-live-connect-tests.ts b/microsoft-live-connect/microsoft-live-connect-tests.ts index e6c1e2ad0..00f2208f0 100644 --- a/microsoft-live-connect/microsoft-live-connect-tests.ts +++ b/microsoft-live-connect/microsoft-live-connect-tests.ts @@ -467,7 +467,7 @@ var calendarCollection: Microsoft.Live.IObjectCollection Date: Mon, 3 Aug 2015 22:57:10 -0700 Subject: [PATCH 04/21] Use result of 'template' instead of 'settings' parameter. --- underscore/underscore-tests.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/underscore/underscore-tests.ts b/underscore/underscore-tests.ts index d530a4334..f469d3bea 100644 --- a/underscore/underscore-tests.ts +++ b/underscore/underscore-tests.ts @@ -291,17 +291,18 @@ _.result(object, 'stuff'); var compiled = _.template("hello: <%= name %>"); compiled({ name: 'moe' }); var list2 = "<% _.each(people, function(name) { %>
  • <%= name %>
  • <% }); %>"; -_.template(list2, { people: ['moe', 'curly', 'larry'] }); +_.template(list2)({ people: ['moe', 'curly', 'larry'] }); var template = _.template("<%- value %>"); template({ value: '