-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding back in axon's main.js content, see phetsims/scenery#490
- Loading branch information
1 parent
fea1123
commit 3abdd74
Showing
1 changed file
with
30 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |