2016-07-07 3 views
0

Я пытаюсь настроить среду Ionic2 в соответствии с инструкциями, приведенными в разделе «Установка» официальной документации «Начало работы» Ionic2.Ionic2 build for iOs не работает

Я нахожусь на Mac с El Captain версии 10.11.5 и установлена ​​последняя версия xCode (7.3.1).

Я успешно выполнил команду ionic platform add ios после установки Кордовы.

Когда я запускаю следующую команду ionic emulate ios (как указано в Руководстве по началу работы) я получаю загадочную ошибку, чей журнал

(node:38155) fs: re-evaluating native module sources is not supported. If you are using the graceful-fs module, please update it to a more recent version. 

Running 'emulate:before' gulp task before emulate 
[18:17:00] Starting 'clean'... 
[18:17:00] Finished 'clean' after 45 ms 
[18:17:00] Starting 'build'... 
[18:17:00] Starting 'sass'... 
[18:17:00] Starting 'html'... 
[18:17:00] Starting 'fonts'... 
[18:17:00] Starting 'scripts'... 
[18:17:00] Finished 'html' after 80 ms 
[18:17:00] Finished 'scripts' after 78 ms 
[18:17:00] Finished 'fonts' after 88 ms 
[18:17:01] Finished 'sass' after 901 ms 
[18:17:07] Finished 'build' after 6.73 s 
[18:17:07] Starting 'emulate:before'... 
[18:17:07] Finished 'emulate:before' after 4.22 μs 


You have been opted out of telemetry. To change this, run: cordova telemetry on. 

Running command: /Users/enrico.piccinin/work/dbs/examples/ionic2/cutePuppyPics/hooks/after_prepare/010_add_platform_class.js /Users/enrico.piccinin/work/dbs/examples/ionic2/cutePuppyPics 


add to body class: platform-ios 

Error: 


Caught exception: 
undefined 

Тогда я серфинга немного и найти предложение, чтобы запустить следующую команду npm install -g ios-deploy --unsafe-perm=true но как только я это делаю, это то, что я получаю

> [email protected] preinstall /usr/local/lib/node_modules/.staging/ios-deploy-298c9491 
> ./src/scripts/check_reqs.js && xcodebuild 

/usr/local/lib/node_modules/.staging/ios-deploy-298c9491/src/scripts/check_reqs.js:29 
     var ver = arr[1]; 
        ^

TypeError: Cannot read property '1' of null 
    at ChildProcess.<anonymous> (/usr/local/lib/node_modules/.staging/ios-deploy-298c9491/src/scripts/check_reqs.js:29:16) 
    at emitTwo (events.js:106:13) 
    at ChildProcess.emit (events.js:191:7) 
    at maybeClose (internal/child_process.js:852:16) 
    at Socket.<anonymous> (internal/child_process.js:323:11) 
    at emitOne (events.js:96:13) 
    at Socket.emit (events.js:188:7) 
    at Pipe._handle.close [as _onclose] (net.js:492:12) 
npm ERR! Darwin 15.5.0 
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "-g" "ios-deploy" "--unsafe-perm=true" 
npm ERR! node v6.3.0 
npm ERR! npm v3.10.3 
npm ERR! code ELIFECYCLE 

npm ERR! [email protected] preinstall: `./src/scripts/check_reqs.js && xcodebuild` 
npm ERR! Exit status 1 
npm ERR! 
npm ERR! Failed at the [email protected] preinstall script './src/scripts/check_reqs.js && xcodebuild'. 
npm ERR! Make sure you have the latest version of node.js and npm installed. 
npm ERR! If you do, this is most likely a problem with the ios-deploy package, 
npm ERR! not with npm itself. 
npm ERR! Tell the author that this fails on your system: 
npm ERR!  ./src/scripts/check_reqs.js && xcodebuild 

Кстати, здание для Android отлично работает на одной машине.

Любая идея о том, что может быть неправильным?

Большое спасибо заранее за любую помощь

ответ

0

Вы попробуйте запустить проект с XCode? На mac, когда я хочу запустить приложение, я запускаюсь из терминала: ionic build ios, после чего я запускаю проект из XCode. Все работает нормально

Смежные вопросы