Skip to content

Commit

Permalink
strictAxonDependencies: true is the default for all repos, phetsims/a…
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Jan 17, 2024
1 parent 3b8cb80 commit 3f186b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/initialize-globals.js
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@
*/
strictAxonDependencies: {
type: 'boolean',
defaultValue: !!packageSimFeatures.strictAxonDependencies
defaultValue: packageSimFeatures.hasOwnProperty( 'strictAxonDependencies' ) ? !!packageSimFeatures.strictAxonDependencies : true
},

/**
Expand Down

0 comments on commit 3f186b0

Please sign in to comment.