From c964b6a106cbde8431aad111b7b8ca55a800fd92 Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Wed, 23 Oct 2024 15:00:21 -0600 Subject: [PATCH] rename to grunt transpile, https://github.com/phetsims/chipper/issues/1499 --- js/grunt/tasks/{output-js.ts => transpile.ts} | 0 js/grunt/transpile.ts | 2 +- js/scripts/transpile.js | 4 ++-- 3 files changed, 3 insertions(+), 3 deletions(-) rename js/grunt/tasks/{output-js.ts => transpile.ts} (100%) diff --git a/js/grunt/tasks/output-js.ts b/js/grunt/tasks/transpile.ts similarity index 100% rename from js/grunt/tasks/output-js.ts rename to js/grunt/tasks/transpile.ts diff --git a/js/grunt/transpile.ts b/js/grunt/transpile.ts index 4acc0ab9..8bfefa8d 100644 --- a/js/grunt/transpile.ts +++ b/js/grunt/transpile.ts @@ -35,7 +35,7 @@ type TranspileOptions = { }; /** - * Function to support transpiling on the project. See grunt output-js + * Function to support transpiling on the project. See grunt transpile * * @author Sam Reid (PhET Interactive Simulations) * @author Michael Kauzmann (PhET Interactive Simulations) diff --git a/js/scripts/transpile.js b/js/scripts/transpile.js index 900f15de..44c0ac9e 100644 --- a/js/scripts/transpile.js +++ b/js/scripts/transpile.js @@ -1,11 +1,11 @@ // Copyright 2021-2024, University of Colorado Boulder /** - * @deprecated - use `grunt output-js --watch`. + * @deprecated - use `grunt transpile --watch`. * Command Line Interface (CLI) for TypeScript transpilation via babel. Transpiles *.ts and copies all *.js files to * chipper/dist/js. Does not do type checking. Filters based on active-repos and subsets of directories within repos * (such as js/, images/, and sounds/) - * TODO: Delete, and instead use grunt output-js, https://github.com/phetsims/chipper/issues/1499 + * TODO: Delete, and instead use grunt transpile, https://github.com/phetsims/chipper/issues/1499 * * Usage: * cd chipper