Skip to content

Commit

Permalink
Run grunt update, see phetsims/chipper#1148
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Nov 19, 2021
1 parent d98b7c1 commit 2709956
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blast_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@

// Module loading in compilation-free (development) mode will be kicked off once strings are loaded.
// This is done in load-unbuilt-strings.js
window.phet.chipper.loadModules = () => loadURL( 'js/blast-main.js', 'module' );
window.phet.chipper.loadModules = () => loadURL( '../chipper/dist/blast/js/blast-main.js', 'module' );
</script>
</body>
</html>
10 changes: 8 additions & 2 deletions js/blastStrings.js → js/blastStrings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@
/**
* Auto-generated from modulify, DO NOT manually modify.
*/

/* eslint-disable */
import getStringModule from '../../chipper/js/getStringModule.js';
import blast from './blast.js';

const blastStrings = getStringModule( 'BLAST' );
type StringsType = {
'blast': {
'title': string
}
};

const blastStrings = getStringModule( 'BLAST' ) as StringsType;

blast.register( 'blastStrings', blastStrings );

Expand Down

0 comments on commit 2709956

Please sign in to comment.