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

const buildANucleusStrings = getStringModule( 'BUILD_A_NUCLEUS' );
type StringsType = {
'build-a-nucleus': {
'title': string
}
};

const buildANucleusStrings = getStringModule( 'BUILD_A_NUCLEUS' ) as StringsType;

buildANucleus.register( 'buildANucleusStrings', buildANucleusStrings );

Expand Down

0 comments on commit bfe2f53

Please sign in to comment.