Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 0812061

Browse files
takashibtford
authored andcommitted
chore(grunt): remove unnecessary white spaces
1 parent d07101d commit 0812061

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/grunt/utils.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ var getRandomPorts = function() {
2626
var getPackage = function() {
2727
if ( !pkg ) {
2828

29-
// Search up the folder hierarchy for the first package.json
29+
// Search up the folder hierarchy for the first package.json
3030
var packageFolder = path.resolve('.');
3131
while ( !fs.existsSync(path.join(packageFolder, 'package.json')) ) {
3232
var parent = path.dirname(packageFolder);
3333
if ( parent === packageFolder) { break; }
3434
packageFolder = parent;
3535
}
3636
pkg = JSON.parse(fs.readFileSync(path.join(packageFolder,'package.json'), 'UTF-8'));
37-
37+
3838
}
3939

4040
return pkg;
@@ -225,7 +225,7 @@ module.exports = {
225225
},
226226

227227

228-
updateWebdriver: function(done){
228+
updateWebdriver: function(done){
229229
if (process.env.TRAVIS) {
230230
// Skip the webdriver-manager update on Travis, since the browsers will
231231
// be provided remotely.

0 commit comments

Comments
 (0)