gpt4 book ai didi

javascript - 在 Grunt 任务中运行命令

转载 作者:IT王子 更新时间:2023-10-29 02:44:05 28 4
gpt4 key购买 nike

我正在使用 Grunt (用于 JavaScript 项目的基于任务的命令行构建工具)在我的项目中。我创建了一个自定义标签,我想知道是否可以在其中运行命令。

澄清一下,我正在尝试使用 Closure Templates,“任务”应该调用 jar 文件以将 Soy 文件预编译为 javascript 文件。

我正在从命令行运行这个 jar,但我想将它设置为一个任务。

最佳答案

或者你可以加载 grunt 插件来帮助这个:

grunt-shell示例:

shell: {
make_directory: {
command: 'mkdir test'
}
}

grunt-exec示例:

exec: {
remove_logs: {
command: 'rm -f *.log'
},
list_files: {
command: 'ls -l **',
stdout: true
},
echo_grunt_version: {
command: function(grunt) { return 'echo ' + grunt.version; },
stdout: true
}
}

关于javascript - 在 Grunt 任务中运行命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10456865/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com