diff --git a/Gruntfile.js b/Gruntfile.js index 6766ef410ad..fed18f7ab5b 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -1,24 +1,24 @@ /* * Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved. - * + * * Permission is hereby granted, free of charge, to any person obtaining a - * copy of this software and associated documentation files (the "Software"), - * to deal in the Software without restriction, including without limitation - * the rights to use, copy, modify, merge, publish, distribute, sublicense, - * and/or sell copies of the Software, and to permit persons to whom the + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: - * + * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. - * + * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. - * + * */ /*global module, require*/ module.exports = function (grunt) { @@ -27,7 +27,7 @@ module.exports = function (grunt) { // load dependencies require('load-grunt-tasks')(grunt, {pattern: ['grunt-contrib-*', 'grunt-targethtml', 'grunt-usemin']}); grunt.loadTasks('tasks'); - + // Project configuration. grunt.initConfig({ pkg : grunt.file.readJSON("package.json"), @@ -59,7 +59,9 @@ module.exports = function (grunt) { 'xorigin.js', 'dependencies.js', 'thirdparty/requirejs/require.js', - 'LiveDevelopment/launch.html' + 'LiveDevelopment/launch.html', + 'LiveDevelopment/MultiBrowserImpl/transports/**', + 'LiveDevelopment/MultiBrowserImpl/launchers/**' ] }, /* node domains are not minified and must be copied to dist */ @@ -127,7 +129,7 @@ module.exports = function (grunt) { baseUrl: 'src', optimize: 'uglify2', // brackets.js should not be loaded until after polyfills defined in "utils/Compatibility" - // so explicitly include it in main.js + // so explicitly include it in main.js include: ["utils/Compatibility", "brackets"], // TODO: Figure out how to make sourcemaps work with grunt-usemin // https://github.com/yeoman/grunt-usemin/issues/30 @@ -302,7 +304,7 @@ module.exports = function (grunt) { linux: "<%= shell.repo %>/installer/linux/debian/package-root/opt/brackets/brackets" } }); - + // task: install grunt.registerTask('install', ['write-config', 'less']);