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");
const got = require("got");
import get from "lodash.get"
import got from "got"
type Commit = {
message: string;