Tweak export order for r.js.

Former-commit-id: 81f8f3feae9228e99978710c0193a9d26bb9b519
This commit is contained in:
John-David Dalton
2012-05-23 17:06:21 -04:00
parent 231fd46cd2
commit baa37450cc
3 changed files with 47 additions and 45 deletions

View File

@@ -14,7 +14,7 @@
Object.keys = function() { return []; };
</script>
<script src="../lodash.js"></script>
<script src="../lodash.min.js"></script>
<script>
var lodashBadKeys = _,
_ = 1;
@@ -22,7 +22,7 @@
Object.keys = _3;
_3 = void 0;
</script>
<script src="../lodash.js"></script>
<script src="../lodash.min.js"></script>
<script src="../vendor/requirejs/require.js"></script>
<script>
if (/[?&]norequire=true(?:&|$)/.test(location.search)) {
@@ -34,8 +34,8 @@
'baseUrl': '../vendor/requirejs/',
'urlArgs': 't=' + (+new Date),
'paths': {
'lodash': '../../lodash',
'underscore': './../../lodash'
'lodash': '../../lodash.min',
'underscore': './../../lodash.min'
}
},
['lodash', 'underscore'], function(lodash, lodashAsUnderscore) {