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 fc39864 commit cebfc9c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bumper_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,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/bumper-main.js', 'module' );
window.phet.chipper.loadModules = () => loadURL( '../chipper/dist/bumper/js/bumper-main.js', 'module' );
</script>
</body>
</html>
10 changes: 8 additions & 2 deletions js/bumperStrings.js → js/bumperStrings.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 bumper from './bumper.js';

const bumperStrings = getStringModule( 'BUMPER' );
type StringsType = {
'bumper': {
'title': string
}
};

const bumperStrings = getStringModule( 'BUMPER' ) as StringsType;

bumper.register( 'bumperStrings', bumperStrings );

Expand Down

0 comments on commit cebfc9c

Please sign in to comment.