Node.js   发布时间:2022-04-24  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了node.js – 用api运行grunt任务,没有命令行大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在Node.js代码中创建并运行grunt任务以供测试使用。

var foo = function() {
    var grunt = require("grunt");

    var options = {"blahblah": null} // ...creaTing dynamic grunt options,such as concat and jshint
    grunt.initConfig(options);
    grunt.registerTask('default',[/*grunt subtasks*/]);
}

但这不行。 Grunt似乎没有执行任何任务。我几乎肯定有一些API在外部运行grunt任务没有命令行,但不知道如何做。

有什么办法吗?

解决方法

您可以。我不知道为什么任何人都需要这样做,因为目前Grunt是一个命令行工具。警告:我不建议以这种方式运行Grunt。但这里是:

var grunt = require('grunt');

// hack to avoid loading a Gruntfile
// You can skip this and just use a Gruntfile instead
grunt.task.init = function() {};

// Init config
grunt.initConfig({
  jshint: {
    all: ['index.js']
  }
});

// Register your own tasks
grunt.registerTask('myTask',function() {
  grunt.log.write('Ran my task.');
});

// Load tasks from npm
grunt.loadNpmTasks('grunt-contrib-jshint');

// Finally run the tasks,with options and a callBACk when we're done
grunt.tasks(['myTask','jshint'],{},function() {
  grunt.log.ok('Done running tasks.');
});

大佬总结

以上是大佬教程为你收集整理的node.js – 用api运行grunt任务,没有命令行全部内容,希望文章能够帮你解决node.js – 用api运行grunt任务,没有命令行所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。