diff options
| author | 8cy <[email protected]> | 2020-05-05 15:25:18 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-05-05 15:25:18 -0700 |
| commit | 17e6c7633ba7e3b3e2e38b5e61ab5d064c07257c (patch) | |
| tree | 389c55b7781dce23d683c75feaa9b7a79a1ad2d3 | |
| parent | add build scripts, remove dist (diff) | |
| download | dep-core-17e6c7633ba7e3b3e2e38b5e61ab5d064c07257c.tar.xz dep-core-17e6c7633ba7e3b3e2e38b5e61ab5d064c07257c.zip | |
add "|| true" to the end of the scripts to ignore errors
| -rw-r--r-- | package.json | 10 | ||||
| -rw-r--r-- | src/config.json | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/package.json b/package.json index 532aa19..16927ac 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { "name": "uwufier", - "version": "9.3.0", + "version": "9.3.1", "description": "A Discord bot that supports audio playback, fun commands, utilities, and soundsboard, and more to come!", "main": "./dist/app.js", "scripts": { - "build": "tsc", - "build:dev": "tsc --watch", - "start": "npm run build && cd dist && node app", - "start:dev": "concurrently \"cd dist\" \"supervisor app\"" + "build": "tsc || true", + "build:dev": "tsc --watch || true", + "start": "npm run build && cd dist && node app || true", + "start:dev": "concurrently \"cd dist\" \"supervisor app\" || true" }, "author": "sin", "license": "MIT", diff --git a/src/config.json b/src/config.json index 7d10d6e..d791701 100644 --- a/src/config.json +++ b/src/config.json @@ -1,7 +1,7 @@ { "secret":"Njk5NDczMjYzOTk4MjcxNDg5.XpU5oQ.btZuxVudhNllSQY6CxrXXtMJm9A", "yt-api-key":"AIzaSyCeG1lQAeInv4vjFv_eTL9IFAFNdQC9Nk8", - "version":"9.3.0", + "version":"9.3.1", "fortniteTrackerNetworkToken": "4cf21f95-5f1a-412a-b4a7-e5424adc314a", "maxMultipler": 100, "minMultipler": 1.01 |