mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 12:51:30 -05:00
previous AMD ordering was not correct
This commit is contained in:
@@ -10,6 +10,6 @@ m1.f();
|
||||
///<amd-dependency path='bar' name='b'/>
|
||||
///<amd-dependency path='foo'/>
|
||||
///<amd-dependency path='goo' name='c'/>
|
||||
define(["require", "exports", "m2", "foo", "bar", "goo"], function (require, exports, m1, b, c) {
|
||||
define(["require", "exports", "m2", "goo", "bar", "foo"], function (require, exports, m1, c, b) {
|
||||
m1.f();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user