fix: use import instead of require

This commit is contained in:
Adrian Smijulj 2021-03-26 19:27:32 +01:00
parent 646bcd692d
commit d95f88e824

View file

@ -1,5 +1,5 @@
const get = require("lodash.get"); import get from "lodash.get"
const got = require("got"); import got from "got"
type Commit = { type Commit = {
message: string; message: string;