Skip to content

Commit

Permalink
Adding back in axon's main.js content, see phetsims/scenery#490
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanolson committed Jun 2, 2020
1 parent fea1123 commit 3abdd74
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions js/main.js
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>
*/


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;

0 comments on commit 3abdd74

Please sign in to comment.