我在尝试运行离子项目时遇到了问题.严格执行"grunt serve"后,它会执行Grunt文件中指定的各种任务,除非它在打开离子CLI后立即停止并退出Ionic CLI.我将在这里提供终端的快照:

还有其他人有过这个问题吗?我将不胜感激任何帮助.非常感谢您的回复!
编辑:我不完全确定它是否重要,但是在安装时,程序无法安装cordova-whitelist插件.
编辑2:这是Gruntfile.js
"
// Generated on 2015-05-22 using generator-ionic 0.7.3
'use strict';
var _ = require('lodash');
var path = require('path');
var cordovaCli = require('cordova');
var spawn = process.platform === 'win32' ? require('win-spawn') : require('child_process').spawn;
module.exports = function (grunt) {
// Load grunt tasks automatically
require('load-grunt-tasks')(grunt);
// Time how long tasks take. Can help when optimizing build times
require('time-grunt')(grunt);
// Define the configuration for all the tasks
grunt.initConfig({
// Project settings
yeoman: {
// configurable paths
app: …Run Code Online (Sandbox Code Playgroud)