You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
569 B
31 lines
569 B
// ========================================== |
|
// Copyright 2013 Twitter, Inc |
|
// Licensed under The MIT License |
|
// http://opensource.org/licenses/MIT |
|
// ========================================== |
|
|
|
define( |
|
|
|
[ |
|
'./advice', |
|
'./component', |
|
'./compose', |
|
'./logger', |
|
'./registry', |
|
'./utils' |
|
], |
|
|
|
function(advice, component, compose, logger, registry, utils) { |
|
'use strict'; |
|
|
|
return { |
|
advice: advice, |
|
component: component, |
|
compose: compose, |
|
logger: logger, |
|
registry: registry, |
|
utils: utils |
|
}; |
|
|
|
} |
|
);
|
|
|