Skip to content

Commit

Permalink
revert(build-tools): Include ".generated" in typetest filenames (#12571)
Browse files Browse the repository at this point in the history
This reverts commit 7f6cb54.

I need to do a more involved change that is easier to integrate with
other release groups. In particular, the generated names need to be
configurable.
  • Loading branch information
tylerbutler authored Oct 19, 2022
1 parent 15eb7c9 commit 82637e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export async function generateTests(packageDetails: PackageDetails) {
`${testPath}/validate${oldVersionNameForFile
.split("-")
.map((p) => p[0].toUpperCase() + p.substring(1))
.join("")}.generated.ts`,
.join("")}.ts`,
testString.join("\n"),
);
}
Expand Down

0 comments on commit 82637e0

Please sign in to comment.