Skip to content

Commit 03c4c71

Browse files
committed
hotfix(prompts): Now correctly running install/setup prompts in series to prevent odd errors
1 parent 48403e5 commit 03c4c71

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/util/grunt.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ exports.runTasks = function( projectFolder, modulePath ) {
197197
})
198198
.then( function() {
199199
return new Promise( function( resolve, reject ) {
200-
async.forEach(
200+
async.forEachSeries(
201201
tasks,
202202
function( task, callback ) {
203203
if ( /^prompt:clever.*/.test( task ) ) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "cleverstack-cli",
33
"description": "Command line interface for CleverStack",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"main": "./index.js",
66
"author": {
77
"name": "CleverStack",

0 commit comments

Comments
 (0)