v3.5.0-b2

Fix a couple of script errors
This commit is contained in:
benji7425 2018-01-26 00:35:37 +00:00
parent f64d0deed1
commit b9ae3b5b26
5 changed files with 8 additions and 4 deletions

View File

@ -1,4 +1,8 @@
# Changelog
## v3.5.0-b2
### Fixed
- Fixed a couple of script errors
## v3.5.0-b1
### Added
- MongoDB support

View File

@ -1,4 +1,4 @@
const Command = require("../Command.js");
const Command = require("../command.js");
const Discord = require("discord.js");
const InternalConfig = require("../internal-config.json");
const ParentPackageJson = require("../../package.json");

View File

@ -1,4 +1,4 @@
const Command = require("../Command.js");
const Command = require("../command.js");
const ParentPackageJson = require("../../package.json");
module.exports = new Command({

View File

@ -1,6 +1,6 @@
const { fork } = require("child_process");
const CronJob = require("cron").CronJob;
const DiscordUtil = require("./Util.js");
const DiscordUtil = require("./util.js");
// @ts-ignore
const InternalConfig = require("./internal-config.json");

View File

@ -1,5 +1,5 @@
{
"version": "3.5.0-b1",
"version": "3.5.0-b2",
"main": "app/index.js",
"scripts": {
"postinstall": "cd ./discord-bot-core && npm install",