Convert example imagery to plugin

This commit is contained in:
Pete Richards
2017-05-22 14:40:35 -07:00
parent 1bdc0497c7
commit 26a7fee869
6 changed files with 70 additions and 233 deletions

View File

@@ -25,13 +25,15 @@ define([
'./utcTimeSystem/plugin',
'../../example/generator/plugin',
'../../platform/features/autoflow/plugin',
'./timeConductor/plugin'
'./timeConductor/plugin',
'../../example/imagery/plugin'
], function (
_,
UTCTimeSystem,
GeneratorPlugin,
AutoflowPlugin,
TimeConductorPlugin
TimeConductorPlugin,
ExampleImagery
) {
var bundleMap = {
CouchDB: 'platform/persistence/couch',
@@ -113,5 +115,7 @@ define([
return GeneratorPlugin;
};
plugins.ExampleImagery = ExampleImagery;
return plugins;
});