summaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/amd-extra-deps.js
blob: 86b8777ffb714670511d015a05f391abfa79855c (plain)
1
2
3
4
5
6
7
// NB update to "deps[]" when deps is deprecated
"deps ./amd-dep-A.js";
"deps ./amd-dep-B.js";

define([], function() {
  return [A, B];
});