Skip to content

Commit

Permalink
merge: 'flub-generate-api' into use-flub-generate-api
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-ha committed Apr 5, 2024
2 parents 6ae192d + 48d6960 commit 2850cda
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ import { Flags } from "@oclif/core";
import type { ExportSpecifierStructure } from "ts-morph";
import { ModuleKind, Project, ScriptKind } from "ts-morph";

import { BaseCommand } from "../../base.js";
import { BaseCommand } from "../../base";
import { ApiLevel, getApiExports } from "../../library";
import type { CommandLogger } from "../../logging.js";
import type { CommandLogger } from "../../logging";

/**
* Literal pattern to search for in file prefix to replace with unscoped package name.
Expand Down
4 changes: 2 additions & 2 deletions build-tools/packages/build-cli/src/library/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export {
ApiLevel,
knownApiLevels,
isKnownApiLevel,
} from "./apiLevel.js";
} from "./apiLevel";
export {
generateBumpVersionBranchName,
generateBumpVersionCommitMessage,
Expand Down Expand Up @@ -37,7 +37,7 @@ export {
} from "./package";
export { difference } from "./sets";
export { getIndent, indentString } from "./text";
export { getApiExports } from "./typescriptApi.js";
export { getApiExports } from "./typescriptApi";
export { createPullRequest, getCommitInfo, pullRequestExists } from "./github";
export {
getRanges,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import type { SourceFile, ExportedDeclarations } from "ts-morph";
import { Node } from "ts-morph";

import { ApiLevel, isKnownApiLevel } from "./apiLevel.js";
import { ApiLevel, isKnownApiLevel } from "./apiLevel";

interface ExportRecord {
name: string;
Expand Down

0 comments on commit 2850cda

Please sign in to comment.