diff --git a/package.json b/package.json index 24b0dcd..7ebecc8 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "scripts": { "test": "tsc && jest && prettier --check 'src/**'", - "develop": "concurrently \"tsc --watch\" \"nodemon lib/server.js\"" + "develop": "concurrently \"tsc --watch\" \"nodemon lib/index.js\"" }, "dependencies": { "crypto-random-string": "^3.2.0", diff --git a/src/server.tsx b/src/index.tsx similarity index 100% rename from src/server.tsx rename to src/index.tsx diff --git a/src/test.ts b/src/test.ts index 07557de..5c2509a 100644 --- a/src/test.ts +++ b/src/test.ts @@ -1,4 +1,4 @@ -import { webServer, feedPath } from "./server"; +import { webServer, feedPath } from "."; import fetch from "node-fetch"; import fs from "fs";