1
0
mirror of https://github.com/adobe/brackets.git synced 2024-11-20 09:53:00 +01:00

fix for minified build

This commit is contained in:
Randy Edmunds 2014-07-30 08:14:00 -07:00
parent f4b9c33cfc
commit 873e76819f
2 changed files with 3 additions and 2 deletions

View File

@ -93,7 +93,8 @@ module.exports = function (grunt) {
'thirdparty/CodeMirror2/mode/{,*/}*', 'thirdparty/CodeMirror2/mode/{,*/}*',
'thirdparty/CodeMirror2/theme/{,*/}*', 'thirdparty/CodeMirror2/theme/{,*/}*',
'thirdparty/i18n/*.js', 'thirdparty/i18n/*.js',
'thirdparty/text/*.js' 'thirdparty/text/*.js',
'utils/Compatibility.js'
] ]
}, },
/* styles, fonts and images */ /* styles, fonts and images */

View File

@ -65,6 +65,6 @@ define(function (require) {
// Load compatibility shims--these need to load early, be careful moving this // Load compatibility shims--these need to load early, be careful moving this
require(["utils/Compatibility"], function () { require(["utils/Compatibility"], function () {
// Load the brackets module. This is a self-running module that loads and runs the entire application. // Load the brackets module. This is a self-running module that loads and runs the entire application.
require(["brackets"]); require("brackets");
}); });
}); });