This commit is contained in:
Leandro Facchinetti 2020-03-18 20:28:41 -04:00
parent 45cecd09b3
commit ed347959f0
3 changed files with 2 additions and 2 deletions

View File

@ -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",

View File

@ -1,4 +1,4 @@
import { webServer, feedPath } from "./server";
import { webServer, feedPath } from ".";
import fetch from "node-fetch";
import fs from "fs";