Skip to content

Commit

Permalink
pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
dsinghvi committed Aug 6, 2024
1 parent fa0f35b commit ff7f5a8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/cli/workspace-loader/src/loadDependency.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { dependenciesYml } from "@fern-api/configuration";
import { VersionedDependency } from "@fern-api/configuration/src/dependencies-yml";
import { createFiddleService } from "@fern-api/core";
import { assertNever, noop, visitObject } from "@fern-api/core-utils";
import { AbsoluteFilePath, doesPathExist, join, RelativeFilePath } from "@fern-api/fs-utils";
Expand Down Expand Up @@ -105,7 +104,7 @@ const DEFINITION_FOLDER_NAME = "definition";
const METADATA_RESPONSE_FILENAME = "metadata.json";
const LOCAL_STORAGE_FOLDER = process.env.LOCAL_STORAGE_FOLDER ?? ".fern";

function getPathToLocalStorageDependency(dependency: VersionedDependency): AbsoluteFilePath {
function getPathToLocalStorageDependency(dependency: dependenciesYml.VersionedDependency): AbsoluteFilePath {
return join(
AbsoluteFilePath.of(homedir()),
RelativeFilePath.of(LOCAL_STORAGE_FOLDER),
Expand Down

0 comments on commit ff7f5a8

Please sign in to comment.