Closed tamtakoe closed 9 years ago
I have files:
app/file1.js define([ 'dep1', 'dep2'], function() {...}
How I can get
app/file1.js define('app/file1', [ 'dep1', 'dep2'], function() {...}
after amd-optimize processing?
See: https://github.com/jrburke/r.js/blob/master/dist.js#L79-L81
And why if I process jQuery.js I have original file plus
define('jQuery', [], function () { return; });
at the end? Is it shimmed file?
Sorry, it is my mistake
I have files:
How I can get
after amd-optimize processing?