2016-03-17 53 views
0

我們可以指定從我的項目文件夾中的特定位置加載gruntfile.js。它像我在我的項目中的某個位置安裝了grunt,我在不同的位置有gruntfile.js,現在我想用當運行咕嚕聲時gruntfile.js。可能嗎。使用批處理文件運行grunt構建

回答

0

您的Gruntfile.js文件需要位於項目的根目錄下。從繁重的網站:

的Gruntfile.js或Gruntfile.coffee文件是一個有效的JavaScript或CoffeeScript的 文件所屬的根目錄項目的, 旁邊的package.json文件,應該與您的 項目源一起承諾。

並假設你有Grunt-CLI installed你可以在你的項目中運行.bat -file,無論是從根或改變與cd根,然後用你的咕嚕命令:

@echo OFF 

echo Starting Grunt Watcher 
start "Watcher" /D %~dp0 cmd /c grunt watch 

echo Starting Node Server 
start "Server" /D %~dp0 cmd /c grunt serve 

echo Building Project 
grunt build 

(從我的項目中獲取示例 - 批處理文件,其中我在新窗口中啓動了一些grunt任務)