Created
May 30, 2015 19:14
-
-
Save MichaelJCole/aa4895dc6cf260c9445f to your computer and use it in GitHub Desktop.
New /platforms/browser/cordova/run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
/* | |
Licensed to the Apache Software Foundation (ASF) under one | |
or more contributor license agreements. See the NOTICE file | |
distributed with this work for additional information | |
regarding copyright ownership. The ASF licenses this file | |
to you under the Apache License, Version 2.0 (the | |
"License"); you may not use this file except in compliance | |
with the License. You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, | |
software distributed under the License is distributed on an | |
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
KIND, either express or implied. See the License for the | |
specific language governing permissions and limitations | |
under the License. | |
*/ | |
var shell = require('shelljs'), | |
spawn = require('child_process').spawn, | |
exec = require('child_process').exec, | |
project = 'file://' + shell.pwd() + '/platforms/browser/www/index.html'; | |
switch (process.platform) { | |
case 'darwin': | |
spawn('open', ['-n', '-a', 'Google\ Chrome', '--args', '--disable-web-security', '--user-data-dir=/tmp/temp_chrome_user_data_dir_for_cordova_browser', project]); | |
break; | |
case 'win32': | |
//TODO: Use regex to fix location of chrome.exe | |
//TODO: Get --user-data-dir to work for windows | |
spawn('C:/Program Files (x86)/Google/Chrome/Application/chrome.exe', ['--user-data-dir="C:/Chromedevsession"', '--disable-web-security', project]); | |
break; | |
case 'linux': | |
try { | |
spawn('chromium', ['--test-type', '--disable-web-security', '--user-data-dir=/tmp/temp_chrome_user_data_dir_for_cordova_browser', project], function() {}); | |
} catch (e) { | |
spawn('google-chrome', ['--test-type', '--disable-web-security', '--user-data-dir=/tmp/temp_chrome_user_data_dir_for_cordova_browser', project]); | |
} | |
break; | |
default: | |
console.log('not supported yet ' + process.platform); | |
break; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I had to change the
case 'linux'
part to this to be able to catch the error:See complete gist here.