-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add *.js suffix in relative require statements, remove unnecessary es…
…lint-disable directives, rename require variables, see phetsims/chipper#1498
- Loading branch information
Showing
13 changed files
with
37 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,9 @@ | |
* @author Jonathan Olson <[email protected]> | ||
*/ | ||
|
||
const getNextTestInfo = require( './getNextTestInfo' ); | ||
const runTest = require( './runTest' ); | ||
const sendTestResult = require( './sendTestResult' ); | ||
const getNextTestInfo = require( './getNextTestInfo.js' ); | ||
const runTest = require( './runTest.js' ); | ||
const sendTestResult = require( './sendTestResult.js' ); | ||
const winston = require( 'winston' ); | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,18 +6,18 @@ | |
* @author Jonathan Olson <[email protected]> | ||
*/ | ||
|
||
const asyncFilter = require( '../../../perennial/js/common/asyncFilter' ); | ||
const cloneMissingRepos = require( '../../../perennial/js/common/cloneMissingRepos' ); | ||
const execute = require( '../../../perennial/js/common/execute' ); | ||
const getRepoList = require( '../../../perennial/js/common/getRepoList' ); | ||
const gitPull = require( '../../../perennial/js/common/gitPull' ); | ||
const gitRevParse = require( '../../../perennial/js/common/gitRevParse' ); | ||
const gruntCommand = require( '../../../perennial/js/common/gruntCommand' ); | ||
const isStale = require( '../../../perennial/js/common/isStale' ); | ||
const npmUpdate = require( '../../../perennial/js/common/npmUpdate' ); | ||
const transpileAll = require( '../../../perennial/js/common/transpileAll' ); | ||
const sleep = require( '../../../perennial/js/common/sleep' ); | ||
const Snapshot = require( './Snapshot' ); | ||
const asyncFilter = require( '../../../perennial/js/common/asyncFilter.js' ); | ||
const cloneMissingRepos = require( '../../../perennial/js/common/cloneMissingRepos.js' ); | ||
const execute = require( '../../../perennial/js/common/execute.js' ); | ||
const getRepoList = require( '../../../perennial/js/common/getRepoList.js' ); | ||
const gitPull = require( '../../../perennial/js/common/gitPull.js' ); | ||
const gitRevParse = require( '../../../perennial/js/common/gitRevParse.js' ); | ||
const gruntCommand = require( '../../../perennial/js/common/gruntCommand.js' ); | ||
const isStale = require( '../../../perennial/js/common/isStale.js' ); | ||
const npmUpdate = require( '../../../perennial/js/common/npmUpdate.js' ); | ||
const transpileAll = require( '../../../perennial/js/common/transpileAll.js' ); | ||
const sleep = require( '../../../perennial/js/common/sleep.js' ); | ||
const Snapshot = require( './Snapshot.js' ); | ||
const assert = require( 'assert' ); | ||
const fs = require( 'fs' ); | ||
const http = require( 'http' ); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
* @author Jonathan Olson <[email protected]> | ||
*/ | ||
|
||
const buildLocal = require( '../../../perennial/js/common/buildLocal' ); | ||
const buildLocal = require( '../../../perennial/js/common/buildLocal.js' ); | ||
|
||
const { App } = require( '@slack/bolt' ); | ||
|
||
|