Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit 28d5f6c

Browse files
committed
Merge pull request #10167 from adobe/ingo/fix-10165
copy the missing files for the multi browser live preview feature
2 parents 091cdb4 + a8e09c6 commit 28d5f6c

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

Gruntfile.js

+18-16
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
/*
22
* Copyright (c) 2013 Adobe Systems Incorporated. All rights reserved.
3-
*
3+
*
44
* Permission is hereby granted, free of charge, to any person obtaining a
5-
* copy of this software and associated documentation files (the "Software"),
6-
* to deal in the Software without restriction, including without limitation
7-
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
8-
* and/or sell copies of the Software, and to permit persons to whom the
5+
* copy of this software and associated documentation files (the "Software"),
6+
* to deal in the Software without restriction, including without limitation
7+
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
8+
* and/or sell copies of the Software, and to permit persons to whom the
99
* Software is furnished to do so, subject to the following conditions:
10-
*
10+
*
1111
* The above copyright notice and this permission notice shall be included in
1212
* all copies or substantial portions of the Software.
13-
*
13+
*
1414
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15-
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1616
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17-
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18-
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19-
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
17+
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18+
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19+
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
2020
* DEALINGS IN THE SOFTWARE.
21-
*
21+
*
2222
*/
2323
/*global module, require*/
2424
module.exports = function (grunt) {
@@ -27,7 +27,7 @@ module.exports = function (grunt) {
2727
// load dependencies
2828
require('load-grunt-tasks')(grunt, {pattern: ['grunt-contrib-*', 'grunt-targethtml', 'grunt-usemin']});
2929
grunt.loadTasks('tasks');
30-
30+
3131
// Project configuration.
3232
grunt.initConfig({
3333
pkg : grunt.file.readJSON("package.json"),
@@ -59,7 +59,9 @@ module.exports = function (grunt) {
5959
'xorigin.js',
6060
'dependencies.js',
6161
'thirdparty/requirejs/require.js',
62-
'LiveDevelopment/launch.html'
62+
'LiveDevelopment/launch.html',
63+
'LiveDevelopment/MultiBrowserImpl/transports/**',
64+
'LiveDevelopment/MultiBrowserImpl/launchers/**'
6365
]
6466
},
6567
/* node domains are not minified and must be copied to dist */
@@ -127,7 +129,7 @@ module.exports = function (grunt) {
127129
baseUrl: 'src',
128130
optimize: 'uglify2',
129131
// brackets.js should not be loaded until after polyfills defined in "utils/Compatibility"
130-
// so explicitly include it in main.js
132+
// so explicitly include it in main.js
131133
include: ["utils/Compatibility", "brackets"],
132134
// TODO: Figure out how to make sourcemaps work with grunt-usemin
133135
// https://github.com/yeoman/grunt-usemin/issues/30
@@ -302,7 +304,7 @@ module.exports = function (grunt) {
302304
linux: "<%= shell.repo %>/installer/linux/debian/package-root/opt/brackets/brackets"
303305
}
304306
});
305-
307+
306308
// task: install
307309
grunt.registerTask('install', ['write-config', 'less']);
308310

0 commit comments

Comments
 (0)