From 718a259a3e6032e3e49dbe0f067a73538fcd0dcc Mon Sep 17 00:00:00 2001 From: Sam Reid Date: Tue, 20 Aug 2024 09:45:23 -0600 Subject: [PATCH] Rename mipmap *.js => *.ts, see https://github.com/phetsims/chipper/issues/1218 --- js/grunt/modulify.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/grunt/modulify.js b/js/grunt/modulify.js index 2e2fbedf9..86bbd37c7 100644 --- a/js/grunt/modulify.js +++ b/js/grunt/modulify.js @@ -173,7 +173,7 @@ ${entries.join( ',\n' )} ]; export default mipmaps;`; - const jsFilename = convertSuffix( filename, '.js' ); + const jsFilename = convertSuffix( filename, '.ts' ); await writeFileAndGitAdd( repo, getRelativePath( subdir, jsFilename ), fixEOL( mipmapContents ) ); };