docs-util: fix import issues following merge (#6390)

During the merge of #6338 the imports in the `git-manager.ts` causes an error during build which wasn't caught in the merge. This PR fixes the imports in the file.
This commit is contained in:
Shahed Nasser
2024-02-13 16:59:04 +02:00
committed by GitHub
parent ae79ff46f4
commit 59ab66a773
2 changed files with 5 additions and 3 deletions

View File

@@ -0,0 +1,2 @@
---
---

View File

@@ -1,7 +1,7 @@
import { Octokit } from "octokit"
import promiseExec from "../utils/promise-exec.js"
import getMonorepoRoot from "../utils/get-monorepo-root.js"
import filterFiles from "../utils/filter-files.js"
import promiseExec from "../../utils/promise-exec.js"
import getMonorepoRoot from "../../utils/get-monorepo-root.js"
import filterFiles from "../../utils/filter-files.js"
type Options = {
owner?: string