From f6345a9f6eae8e0068533d88c8adafe2e593934a Mon Sep 17 00:00:00 2001 From: Jonathan Olson Date: Thu, 25 Nov 2021 19:51:09 -0700 Subject: [PATCH] Initial common code typescript support, including Scenery import changes to prevent out-of-order load errors --- js/intro/view/beaker/BeakerNode.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/intro/view/beaker/BeakerNode.js b/js/intro/view/beaker/BeakerNode.js index c8f354001..2bd56c32a 100644 --- a/js/intro/view/beaker/BeakerNode.js +++ b/js/intro/view/beaker/BeakerNode.js @@ -8,9 +8,9 @@ import Shape from '../../../../../kite/js/Shape.js'; import merge from '../../../../../phet-core/js/merge.js'; -import Node from '../../../../../scenery/js/nodes/Node.js'; -import Path from '../../../../../scenery/js/nodes/Path.js'; -import LinearGradient from '../../../../../scenery/js/util/LinearGradient.js'; +import { Node } from '../../../../../scenery/js/imports.js'; +import { Path } from '../../../../../scenery/js/imports.js'; +import { LinearGradient } from '../../../../../scenery/js/imports.js'; import FractionsCommonColors from '../../../common/view/FractionsCommonColors.js'; import fractionsCommon from '../../../fractionsCommon.js';