From 05718a1f33093de93d1f7763c1743747ff9cd51a Mon Sep 17 00:00:00 2001 From: Michael Kauzmann Date: Thu, 13 Oct 2022 12:53:12 -0600 Subject: [PATCH] move supportsDynamicLocales and colorProfiles to simFeatures, https://github.com/phetsims/chipper/issues/1339 --- calculus-grapher_en.html | 7 ++++++- package.json | 10 ++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/calculus-grapher_en.html b/calculus-grapher_en.html index bcaa6fa6..7bb65389 100644 --- a/calculus-grapher_en.html +++ b/calculus-grapher_en.html @@ -44,7 +44,12 @@ ], "simulation": true, "supportsOutputJS": true, - "supportsDynamicLocale": true + "simFeatures": { + "supportsDynamicLocale": true, + "colorProfiles": [ + "default" + ] + } }, "eslintConfig": { "extends": "../chipper/eslint/sim_eslintrc.js" diff --git a/package.json b/package.json index 8013addd..b41e0ef4 100644 --- a/package.json +++ b/package.json @@ -22,10 +22,12 @@ ], "simulation": true, "supportsOutputJS": true, - "supportsDynamicLocale": true, - "colorProfiles": [ - "default" - ] + "simFeatures": { + "supportsDynamicLocale": true, + "colorProfiles": [ + "default" + ] + } }, "eslintConfig": { "extends": "../chipper/eslint/sim_eslintrc.js"