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 734a917 commit beef2aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 4 additions & 2 deletions area-model-common-tests.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"phetLibs": [
"twixt",
"vegas"
]
],
"supportsOutputJS": true
},
"eslintConfig": {
"extends": "../chipper/eslint/sim_eslintrc.js"
Expand Down Expand Up @@ -115,6 +116,7 @@
script.type = type;
script.src = preloadURL;
script.async = false;
script.setAttribute( 'crossorigin', 'use-credentials' );
document.head.appendChild( script );
};

Expand All @@ -126,7 +128,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-common-tests.js', 'module' );
window.phet.chipper.loadModules = () => loadURL( '../chipper/dist/area-model-common/js/area-model-common-tests.js', 'module' );
</script>
</body>
</html>
File renamed without changes.
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
"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"
],
"exclude": [
"js/**/*test*"
Expand Down

0 comments on commit beef2aa

Please sign in to comment.