Compare commits

..

No commits in common. "bf7a7a96804a7db9c28009251e434791d43bd35f" and "a17d520eeaf02f12796dca6f6d91e265756037f6" have entirely different histories.

3 changed files with 2 additions and 23 deletions

View File

@ -18,7 +18,6 @@
},
"scripts": {
"build": "tsc && copyfiles -u 3 \"src/db/migrations/*.sql\" dist/db/migrations && copyfiles -u 3 \"src/db/seed/*.sql\" dist/db/seed && copyfiles -u 2 \"src/messages/*.txt\" dist/messages",
"start": "node dist/index.js",
"test": "tsc -p tsconfig.tests.json"
"start": "node dist/index.js"
}
}
}

View File

@ -1,10 +0,0 @@
import { CommentFetcher } from "../../src/rdrama/services/CommentFetcher";
main();
async function main(): Promise<void> {
let maxPages = 5
for (let page = 1; page <= maxPages; page++) {
const newComments = await CommentFetcher.fetchComments(page)
}
}

View File

@ -1,10 +0,0 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./dist-tests",
"rootDir": "./"
},
"include": [
"tests/**/*"
]
}