-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Convert to ESM (fixes tabletojson import error) * Update dependency versions * Remove broken functions due to API 404 so all tests pass (mbb getRankings, wbb getRankings, ncaa getTeamStats getScoringSummary) * Re-gen README and Markdown docs
- Loading branch information
Showing
36 changed files
with
435 additions
and
961 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,23 @@ | ||
import cfb from './services/cfb.service.js'; | ||
import mbb from './services/mbb.service.js'; | ||
import mlb from './services/mlb.service.js'; | ||
import nba from './services/nba.service.js'; | ||
import ncaa from './services/ncaa.service.js'; | ||
import nfl from './services/nfl.service.js'; | ||
import nhl from './services/nhl.service.js'; | ||
import tennis from './services/tennis.service.js'; | ||
import wbb from './services/wbb.service.js'; | ||
import wnba from './services/wnba.service.js'; | ||
|
||
module.exports.cfb = require('./services/cfb.service'); | ||
module.exports.mbb = require('./services/mbb.service'); | ||
module.exports.mlb = require('./services/mlb.service'); | ||
module.exports.nba = require('./services/nba.service'); | ||
module.exports.ncaa = require('./services/ncaa.service'); | ||
module.exports.nfl = require('./services/nfl.service'); | ||
module.exports.nhl = require('./services/nhl.service'); | ||
module.exports.tennis = require('./services/tennis.service'); | ||
module.exports.wbb = require('./services/wbb.service'); | ||
module.exports.wnba = require('./services/wnba.service'); | ||
|
||
export default { | ||
cfb, | ||
mbb, | ||
mlb, | ||
nba, | ||
ncaa, | ||
nfl, | ||
nhl, | ||
tennis, | ||
wbb, | ||
wnba | ||
}; |
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
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
Oops, something went wrong.