Skip to content

Commit

Permalink
Changed config/index.js to config/config.js
Browse files Browse the repository at this point in the history
  • Loading branch information
wardpeet committed Aug 18, 2016
1 parent e9110bf commit 2e717fe
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion lighthouse-core/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if (!environment.checkNodeCompatibility()) {
const Runner = require('./runner');
const log = require('./lib/log.js');
const ChromeProtocol = require('./gather/drivers/cri.js');
const Config = require('./config');
const Config = require('./config/config');

/**
* The relationship between these root modules:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
'use strict';

const Config = require('../../config');
const Config = require('../../config/config');
const assert = require('assert');
const path = require('path');
const defaultConfig = require('../../config/default.json');
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-core/test/runner-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/
const Runner = require('../runner');
const fakeDriver = require('./gather/fake-driver');
const Config = require('../config');
const Config = require('../config/config');
const Audit = require('../audits/audit');
const assert = require('assert');
const path = require('path');
Expand Down
2 changes: 1 addition & 1 deletion lighthouse-extension/app/src/lighthouse-background.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

const ExtensionProtocol = require('../../../lighthouse-core/gather/drivers/extension');
const Runner = require('../../../lighthouse-core/runner');
const Config = require('../../../lighthouse-core/config');
const Config = require('../../../lighthouse-core/config/config');
const configJSON = require('../../../lighthouse-core/config/default.json');
const log = require('../../../lighthouse-core/lib/log');

Expand Down

0 comments on commit 2e717fe

Please sign in to comment.