From a17f4400345ef1870c49c2f6d9ab88d9f13ba525 Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Wed, 18 Oct 2023 16:09:01 -0600 Subject: [PATCH] rename migration rules files to processors, https://github.com/phetsims/phet-io-wrappers/issues/573 --- js/grunt/copySupplementalPhetioFiles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/grunt/copySupplementalPhetioFiles.js b/js/grunt/copySupplementalPhetioFiles.js index 84ab7ef48..b79ac43ba 100644 --- a/js/grunt/copySupplementalPhetioFiles.js +++ b/js/grunt/copySupplementalPhetioFiles.js @@ -696,7 +696,7 @@ const handleStudio = async ( repo, wrappersLocation ) => { const getCompiledMigrationProcessors = async ( repo, buildDir ) => { return new Promise( ( resolve, reject ) => { - const migrationProcessorsFilename = `${repo}-migration-rules.js`; + const migrationProcessorsFilename = `${repo}-migration-processors.js`; const entryPointFilename = `../chipper/dist/js/phet-io-sim-specific/repos/${repo}/js/${migrationProcessorsFilename}`; if ( !fs.existsSync( entryPointFilename ) ) { grunt.log.debug( `No migration processors found at ${entryPointFilename}, no processors to be bundled with ${LIB_OUTPUT_FILE}.` );