Skip to content

Commit a07bb49

Browse files
authored
Feature/schiltz3/move files (#95)
# Move all source files to src folder Clean up the directory and make it easier to tell tools were all the source files are # Changes * move source files to src
2 parents 50fcf66 + 7ddd08c commit a07bb49

28 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ COPY . .
1212

1313
RUN npm install -g typescript ts-node
1414

15-
CMD [ "ts-node", "index.ts" ]
15+
CMD [ "ts-node", "src/index.ts" ]
1616

1717
LABEL org.opencontainers.image.source="https://github.com/Antares-Network/CSSC-Bot"

__tests__/utils/channels.tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { cleanChannelString } from "../../utils/channels";
1+
import { cleanChannelString } from "../../src/utils/channels";
22
import { expect, describe, it } from "@jest/globals";
33

44
//cleanChannelString

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"description": "",
88
"main": "index.ts",
99
"scripts": {
10-
"run": "ts-node index.ts",
10+
"run": "ts-node src/index.ts",
1111
"format": "prettier --write .",
1212
"test": "jest"
1313
},
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)