issue #23962: undo workaround
authorSteve Hackbarth <stephenhackbarth@gmail.com>
Wed, 30 Jul 2014 16:23:58 +0000 (12:23 -0400)
committerSteve Hackbarth <stephenhackbarth@gmail.com>
Wed, 30 Jul 2014 16:23:58 +0000 (12:23 -0400)
node-datasource/routes/install_extension.js
scripts/lib/build_all.js

index d69d313..4f67983 100644 (file)
@@ -63,8 +63,8 @@ regexp:true, undef:true, strict:true, trailing:true, white:true */
     async.series([
       validateInput,
       validateUser,
-      //npmLoad,
-      //npmInstall,
+      npmLoad,
+      npmInstall,
       buildExtension,
       useClientDir
     ], function (err, results) {
index f663583..611107a 100644 (file)
@@ -72,7 +72,6 @@ var _ = require('underscore'),
             }
 
           },
-          /*
           function (done) {
             // step 1: npm install extension if necessary
             // an alternate approach would be only npm install these
@@ -102,7 +101,6 @@ var _ = require('underscore'),
               }, done);
             });
           },
-          */
           function (done) {
             // step 2: build the client
             buildClient(specs, done);