From 3abdd749d6e8abce4876182ae9bde8d50167a49f Mon Sep 17 00:00:00 2001 From: Jonathan Olson Date: Tue, 2 Jun 2020 10:40:40 -0600 Subject: [PATCH] Adding back in axon's main.js content, see https://github.com/phetsims/scenery/issues/490 --- js/main.js | 33 ++++++++++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/js/main.js b/js/main.js index a058b822..c5db2167 100644 --- a/js/main.js +++ b/js/main.js @@ -1,8 +1,35 @@ // Copyright 2013-2020, University of Colorado Boulder -// load modules so they will attach to the namespace +/** + * Module that includes all axon dependencies, so that requiring this module will return an object + * that consists of the entire exported 'axon' namespace API. + * + * @author Jonathan Olson + */ - -import axon from './axon.js'; // eslint-disable-line +import './Action.js'; +import './BooleanProperty.js'; +import './CallbackTimer.js'; +import './DerivedProperty.js'; +import './DynamicProperty.js'; +import './Emitter.js'; +import './EnumerationProperty.js'; +import './Multilink.js'; +import './NumberProperty.js'; +import './ObservableArray.js'; +import './Property.js'; +import './PropertyStateHandler.js'; +import './PropertyStatePhase.js'; +import './StringProperty.js'; +import './TinyEmitter.js'; +import './TinyForwardingProperty.js'; +import './TinyProperty.js'; +import './TinyStaticProperty.js'; +import './ValidatorDef.js'; +import axon from './axon.js'; +import './propertyStateHandlerSingleton.js'; +import './timer.js'; +import './units.js'; +import './validate.js'; export default axon; \ No newline at end of file