Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use most recent React version #477

Merged
merged 5 commits into from
Aug 25, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix misplaced parenthesis, add missing semicolon.
  • Loading branch information
wdhorton committed Aug 25, 2016
commit 33640a96f3d8e51a1067a1dd0de02e7d246d1bcc
6 changes: 3 additions & 3 deletions scripts/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
'--save',
verbose && '--verbose'
].filter(function(e) { return e; });
var proc = spawn('npm', args, {stdio: 'inherit'})
var proc = spawn('npm', args, {stdio: 'inherit'});
proc.on('close', function (code) {
if (code !== 0) {
console.error('`npm ' + args.join(' ') + '` failed');
Expand Down Expand Up @@ -109,5 +109,5 @@ module.exports = function(appPath, appName, verbose, originalDirectory) {
}
console.log();
console.log('Happy hacking!');
}
});
});
}