Quantcast
Channel: JavaScriptMVC Forum
Viewing all articles
Browse latest Browse all 3491

Re : Question on can.route

$
0
0
Yes. All the AMD build does is rewrite something like 
  1. steal('a', 'b.js', function(A, B) {});
to
  1. define(['a/a', 'b'], function(A, B) {});
And rename the module names accordingly (a/a.js becomes a.js). Same dependency trees, same content etc.
In case there are any differences, it is probably a bug.

Viewing all articles
Browse latest Browse all 3491

Trending Articles