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 2329365 commit 95bf38a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion area-model-multiplication_en.html
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,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/area-model-multiplication-main.js', 'module' );
window.phet.chipper.loadModules = () => loadURL( '../chipper/dist/area-model-multiplication/js/area-model-multiplication-main.js', 'module' );
</script>
</body>
</html>
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 areaModelMultiplication from './areaModelMultiplication.js';

const areaModelMultiplicationStrings = getStringModule( 'AREA_MODEL_MULTIPLICATION' );
type StringsType = {
'area-model-multiplication': {
'title': string
}
};

const areaModelMultiplicationStrings = getStringModule( 'AREA_MODEL_MULTIPLICATION' ) as StringsType;

areaModelMultiplication.register( 'areaModelMultiplicationStrings', areaModelMultiplicationStrings );

Expand Down
20 changes: 18 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
{
"extends": "../chipper/tsconfig-core.json",
"references": [{"path":"../area-model-common"},{"path":"../twixt"},{"path":"../vegas"},{"path":"../joist"}],
"references": [
{
"path": "../area-model-common"
},
{
"path": "../twixt"
},
{
"path": "../vegas"
},
{
"path": "../joist"
}
],
"include": [
"js/**/*",
"sounds/**/*",
"mipmaps/**/*",
"images/**/*"
"images/**/*",
"../chipper/phet-types.d.ts",
"../chipper/node_modules/@types/lodash/index.d.ts",
"../chipper/node_modules/@types/qunit/index.d.ts"
]
}

0 comments on commit 95bf38a

Please sign in to comment.