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 ba6cb0f commit 855a28e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions axon-tests.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
"supportedBrands": [
"phet",
"phet-io"
]
],
"supportsOutputJS": true
},
"eslintConfig": {
"extends": "../chipper/eslint/sim_eslintrc.js"
Expand Down Expand Up @@ -107,6 +108,7 @@
script.type = type;
script.src = preloadURL;
script.async = false;
script.setAttribute( 'crossorigin', 'use-credentials' );
document.head.appendChild( script );
};

Expand All @@ -118,7 +120,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/axon-tests.js', 'module' );
window.phet.chipper.loadModules = () => loadURL( '../chipper/dist/axon/js/axon-tests.js', 'module' );
</script>
</body>
</html>
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"../phet-core/js/EnumerationIO.js",
"../dot/js/Range.js",
"../dot/js/dot.js",
"phet-types.d.ts"
"../chipper/phet-types.d.ts",
"../chipper/node_modules/@types/lodash/index.d.ts",
"../chipper/node_modules/@types/qunit/index.d.ts"
],
"exclude": [
"../**/*test*",
Expand Down

0 comments on commit 855a28e

Please sign in to comment.