From 1010277ab8f268caa07b3c130adc9a9904c412f1 Mon Sep 17 00:00:00 2001 From: Ken Mayer Date: Tue, 8 Jan 2013 10:54:22 -0800 Subject: [PATCH] fix(docs): Fix warning: 'end is deprecated, use done instead.' - There's a warning due to ./node_modules/q-fs@0.1.36 --> node_modules/q@0.8.11 - This may also be due to package.json not being restrictive enough on the q-fs version. - In any case, q-fs is being retired for q-io/fs, so this fix is probably necssary eventually. --- docs/src/gen-docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/gen-docs.js b/docs/src/gen-docs.js index a8ca8412e91f..62d22b17dfc3 100755 --- a/docs/src/gen-docs.js +++ b/docs/src/gen-docs.js @@ -36,7 +36,7 @@ writer.makeDir('build/docs/', true).then(function() { }); }).then(function printStats() { console.log('DONE. Generated ' + docs.length + ' pages in ' + (now()-start) + 'ms.' ); -}).end(); +}).done(); function writeTheRest(writesFuture) {