Skip to content

Commit

Permalink
Fix missing .mts file
Browse files Browse the repository at this point in the history
When refactoring the configuration file we missed compiling the
`runTSC.mts` TypeScript file, which caused a published version of
`@ninjutsu-build/tsc` to not work.

Future work is planned to add back integration tests to catch issues
like this happening.
  • Loading branch information
elliotgoodrich committed Mar 24, 2024
1 parent b478a0d commit 079fdc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ toposort(
: dependenciesInstalled;

// Grab all TypeScript source files and format them
const ts = globSync(join(cwd, "src", "*.ts"), {
const ts = globSync(join(cwd, "src", "*.{mts,ts}"), {
posix: true,
ignore: { ignored: (f) => f.name.endsWith(".test.ts") },
}).map(formatAndLint);
Expand Down

0 comments on commit 079fdc9

Please sign in to comment.