mirror of
https://github.com/systemjs/systemjs.git
synced 2026-01-18 14:53:14 +00:00
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
define('bundle-1', function() {
|
|
return { defined: true };
|
|
});
|
|
define('bundle-2', function() {
|
|
return { defined: true };
|
|
});
|
|
define('bundle-x/path/to/bundle-module-1', function() {
|
|
return { defined: true };
|
|
});
|
|
define('bundle-x/path/to/bundle-module-2', function() {
|
|
return { defined: true };
|
|
}); |