11import { mkdirSync , writeFileSync } from "node:fs" ;
22import path from "node:path" ;
33import process from "node:process" ;
4- import { parseCliArguments } from "./args.js " ;
5- import { postReleasePlanComment } from "./pr-comment.js " ;
4+ import { parseCliArguments } from "./args.ts " ;
5+ import { postReleasePlanComment } from "./pr-comment.ts " ;
66import {
77 createAzdskRunner ,
88 ensureReleasePlan ,
99 getApiReleaseType ,
1010 getNextMonthTarget ,
1111 getSdkReleaseType ,
12- } from "./release-plan.js " ;
13- import type { TypeSpecProjectInfo } from "./types.js " ;
12+ } from "./release-plan.ts " ;
13+ import type { TypeSpecProjectInfo } from "./types.ts " ;
1414import {
1515 checkNewApiVersionLabel ,
1616 createOctokit ,
1717 getTypeSpecProjectInfoFromCommit ,
1818 getTypeSpecProjectInfoFromPr ,
19- } from "./typespec-project.js " ;
19+ } from "./typespec-project.ts " ;
2020
2121/**
2222 * Main CLI entry point.
@@ -143,17 +143,17 @@ export async function main(): Promise<void> {
143143 }
144144}
145145
146- export { parseCliArguments } from "./args.js " ;
147- export { buildReleaseplanCommentBody , postReleasePlanComment } from "./pr-comment.js " ;
148- export type { CommentBodyParams , PrCommentParams } from "./pr-comment.js " ;
146+ export { parseCliArguments } from "./args.ts " ;
147+ export { buildReleaseplanCommentBody , postReleasePlanComment } from "./pr-comment.ts " ;
148+ export type { CommentBodyParams , PrCommentParams } from "./pr-comment.ts " ;
149149export {
150150 createAzdskRunner ,
151151 ensureReleasePlan ,
152152 getApiReleaseType ,
153153 getNextMonthTarget ,
154154 getSdkReleaseType ,
155155 runAzdskCommand ,
156- } from "./release-plan.js " ;
156+ } from "./release-plan.ts " ;
157157export type {
158158 ApiReleaseType ,
159159 AzsdkRunner ,
@@ -164,7 +164,7 @@ export type {
164164 PullRequestChangedFile ,
165165 ReleasePlanCommandContext ,
166166 TypeSpecProjectInfo ,
167- } from "./types.js " ;
167+ } from "./types.ts " ;
168168export {
169169 collectTypeSpecProjectPaths ,
170170 compareApiVersionsDesc ,
@@ -177,4 +177,4 @@ export {
177177 getTypeSpecProjectInfoFromCommit ,
178178 getTypeSpecProjectInfoFromPr ,
179179 parseApiVersion ,
180- } from "./typespec-project.js " ;
180+ } from "./typespec-project.ts " ;
0 commit comments