Skip to content

Commit 8703695

Browse files
committed
🐞 FIX: yarn build
1 parent 887282a commit 8703695

File tree

4 files changed

+58
-163
lines changed

4 files changed

+58
-163
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
version: '2.1'
1+
version: 2.1
22
orbs:
3-
node: circleci/node@4.2.1
3+
node: circleci/node@5.0.2
44
jobs:
55
build-and-test:
66
docker:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"@types/express": "^4.17.13",
3535
"@types/minimist": "^1.2.2",
3636
"@types/morgan": "^1.9.3",
37-
"@types/node": "^17.0.23",
37+
"@types/node": "15.9.0",
3838
"nodemon": "^2.0.15",
3939
"ts-node": "^10.7.0"
4040
},

src/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { lines } from "./utils/libs/getResponses";
1010
const port = parseInt(process.env.PORT!) || 7070;
1111

1212
const app = express();
13-
app.use(morgan("common"));
13+
app.use(morgan("tiny"));
1414
app.use("/history/web/charts", dashboardRouter);
1515

1616
app.use(userAgentMiddleware);

0 commit comments

Comments
 (0)