- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用grunt-shell和其他自定义任务。在我的任务中,我想逐步运行此任务并检查返回的任务。例如伪代码:
grunt.task.registerTask('test', function () {
grunt.log.header('Running app');
var response = grunt.task.run('shell:go_to_folder');
if (response == 'folder not found') {
grunt.task.run('shell:create folder');
} else {
...
}
grunt.log.ok('Done');
});
但是 grunt.task.run 是异步
函数,并且没有返回任何响应或 promise 。
最佳答案
您可以考虑使用grunt-shell
custom-callback捕获响应并处理任何条件逻辑的功能。
以下示例要点在通过命令行运行$ grunt
时将执行以下操作:
将目录更改为项目根目录中名为 quux
的文件夹。如果名为 quux
的文件夹存在,则会记录以下内容:
Done: Successfully changed to directory 'quux'
但是,如果项目根目录中不存在名为 quux
的文件夹,则会记录以下内容:
The folder named 'quux' is missing
shell:create_folder
任务,该任务在创建名为 quux
的文件夹时记录:
Successfully created folder named 'quux'
最后运行 shell:go_to_folder
任务,然后报告上面的第 1 点。
Gruntfile.js
module.exports = function (grunt) {
'use strict';
grunt.loadNpmTasks('grunt-shell');
/**
* This callback is passed via the `go_to_folder` Task.
* If the folder named `quux` is missing it is reported to the Terminal
* and then invokes the `create_folder` Task.
* However, if the folder named `quux` does exists it reports successfully
* changing to the directory.
*/
function goToFolderCB(err, stdout, stderr, cb) {
// Check if the OS error reports the folder is missing:
// - `No such file or directory` is reported in MacOS (Darwin)
// - `The system cannot find the path specified` is reported in Windows cmd.exe
if (stderr && stderr.indexOf('No such file or directory') > -1
|| stderr.indexOf('The system cannot find the path specified') > -1) {
grunt.log.writeln('The folder named \'quux\' is missing');
grunt.task.run('shell:create_folder');
} else {
grunt.log.ok('Done: Successfully changed to directory \'quux\'');
}
cb();
}
/**
* This callback is passed via the `create_folder` task.
* After reporting successfully creating the folder named `quux`
* it runs the `go_to_folder` Task.
*/
function createFolderCB(err, stdout, stderr, cb) {
grunt.log.writeln('Successfully created folder named \'quux\'');
grunt.task.run('shell:go_to_folder');
cb();
}
grunt.initConfig({
shell: {
go_to_folder: {
command: 'cd quux',
options: {
stderr: false, // Prevent stderr logs in Terminal.
callback: goToFolderCB
}
},
create_folder: {
command: 'mkdir quux',
options: {
callback: createFolderCB
}
}
}
});
grunt.task.registerTask('test', function () {
grunt.log.header('Running app');
grunt.task.run('shell:go_to_folder');
});
grunt.registerTask('default', ['test']);
};
关于javascript - grunt 在函数中运行多个任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46467663/
我安装了 grunt 和 grunt cli,但仍然出现命令未找到错误 { "name": "angulartdd", "version": "1.0.0", "description":
我有一个使用“grunt-contrib-watch”和“grunt-exec”的 Grunt.js 文件,这是因为我想以一种独特的方式使用 handlebars 预编译器的一些自定义功能。 代码:
我正忙于尝试完成我正在运行的部署脚本。它可能有一半的时间有效,而且令人沮丧,因为我使用的大部分代码都不是我写的。我真的希望有一个我可以执行的较低级别的解决方法。 基本上发生的事情是我正在尝试执行 5
我想像在文档中定义的那样将参数传递给grunt-shell: module.exports = function(grunt) { // Configure Grunt grunt.initConfi
背景 我正在使用 Yeoman webapp 来搭建我的前端。 在 gruntfile 中,他们使用 grunt-rev 和 grunt-usemin Grunt-rev 将“修改”我的 Assets
我已经设置了grunt-eslint在我的 gruntfile.js 中,但是当我运行“grunt eslint”时,什么也没有发生。该任务看似即将开始,但 15 分钟后却停滞不前。 我的所有其他任务
我最近开始使用 grunt 做 JS 项目。 我有一个名为“grunt-contrib-jasmine”的插件用于 Jasmine 测试。我工作得很好,但我无法在浏览器中通过 specrunner 运
谁能告诉我这里做错了什么(我是 grunt 的新手)一个大学给我提供了一个基本的 gruntfile 设置 我已经安装了 node、js 和 grunt,但我不知道如何安装各种包(uglify、con
我正在尝试使用 grunt-contrib-watch和 grunt-rsync将任何文件更改上传到我的开发服务器。这是我的设置: var path = require('path'); module
尝试使用grunt-kill创建一个任务来终止我的 server-scorm 任务,并最终终止所有相关任务。这些说明非常短,因为它假设我知道有关 PID 文件的所有信息(我不知道,不是开发人员的错误)
我要么脑子一片空白,要么本该更复杂。 我正在尝试从 Grunt 任务运行 grunt-init,如下所示: grunt.registerTask('init', 'Scaffold various a
我有一个从玩家发射的射弹预制件,当它与“边界”碰撞时,它应该摧毁自己,当它击中“咕噜声”时,它应该摧毁自己和咕噜声。但是,当它碰到边界时,它会破坏自身和边界的对撞机。我创建了一个自定义标签脚本,允许我
module.exports = function(grunt){ grunt.initConfig({ pkg: grunt.file.readJSON('package.json'),
我已经加入了一个非营利性开源项目,想帮点忙,但我对 Grunt 不熟悉。我做了一些研究,但无法弄清楚为什么配置不起作用。 这是我正在尝试使用的插件。它允许应用多个后处理器,但我现在只需要 Autopr
下面的代码读取app/modules/中的每个子目录js的内容(例如app/modules/module1/js/, app/modules/module2/js/, aso.) 此脚本在不使用最后一
我正在尝试使用 grunt-exec 运行一个 javascript 测试运行程序,并传入一个已部署的链接变量。 我尝试通过使用 exec:setLink 设置环境变量 grunt.option('l
当我使用 grunt-contrib-watch 更改我的 js 文件时,我试图让 Grunt 重新加载它们。这是我的 Gruntfile: module.exports = function(gru
所以我的意思是: grunt.registerTask('default', ['default']); // CLI: grunt grunt.registerTask('serve', ['ser
我想创建一个通用的顶级 Gruntfile.js,配置为监视较少的文件更改。当less文件发生变化时,我想将其编译为css,然后在浏览器中实时加载css文件。我的功能正常,但我必须为每个项目复制 Gr
我正在使用 grunt-xmlpoke 更新 xml 文件。 xml 文件的路径作为参数提供。问题是文件部分中的第一个 WebConfigPath (键)被视为字符串。它更新了我的 xml 文件的本地
我是一名优秀的程序员,十分优秀!