Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人遇到过 Concat (Loop Infinite) 的这个错误? http://pastebin.com/XQsYuqdc
Windows 终端上的 GruntJs:PowerShell
您正在定义一个将自行运行的任务,进入一个无限循环。
这是问题行:
grunt.registerTask( 'concat', [ 'concat' ] );
这也会是一个问题:
grunt.registerTask( 'copy', [ 'copy' ] );
在这两种情况下,没有理由定义自定义任务来运行 grunt 任务(我建议删除这两行,然后事情就会起作用)。
您可以定义一个自定义任务来运行这两个任务,例如:
grunt.registerTask( 'build', [ 'concat', 'copy' ] );