grunt系列啟動grunt專案

2021-08-27 12:40:45 字數 1128 閱讀 7054

啟動grunt project:

1、已經存在的grunt project

假設grunt cli已經安裝了,專案裡面已經有package.json和gruntfile,啟動很簡單:

npm install

grunt

2、乙個新的grunt project

增加兩個檔案到你的專案裡面:

你會在這個檔案裡面列出專案需要的grunt和grunt plugins:

}

package.json檔案放在專案的根目錄下,和gruntfile同級

在根目錄下執行:npm install,package.json裡面定義的依賴版本會正確的載入!

在你的專案裡面有幾種方式去建立package.json

//大部分的grunt-init templates會自動的建立乙個專案特有的package.json檔案

//會建立乙個基本的package.json檔案

npm init

可以以下面例子開始,如果需要的話可以擴充套件

}

這個檔案命名成:gruntfile.js或者gruntfile.coffee

它是用來配置和定義任務的,同時載入grunt plugins

注釋: 在0.3.x version的時候,它叫做:grunt.js

乙個gruntfile由以下部分組成:

module.exports = function(grunt)
注:引數grunt 

module.exports = function(grunt),

build:

} });

//載入支援uglify任務的外掛程式

grunt.loadnpmtasks('grunt-contrib-uglify');

//預設的任務

grunt.registertask('default',['uglify']);

};

grunt學習筆記一 grunt安裝

一 nodejs 2.配置系統和使用者環境變數 安裝包自動新增 msi安裝包,exe安裝包需要手動新增環境變數,類似jdk環境變數配置 3.測試 cmd進入命令列模式,node v 和 npm v 檢測是否安裝成功 4.編寫nodejs測試 啟動cmd,進入node模式,輸入 console.log...

grunt學習筆記五 grunt模板

1.安裝grunt init npm install g grunt init linux git clone grunt init jquery windows git clone userprofile grunt init jquery userprofile 目錄指的是 windows使用者...

grunt 相關知識

created by lee on 2014.07.02 002.module.exports function grunt 任務一 壓縮a.js,不混淆變數名,保留注釋,新增banner和footer builda files 任務二 壓縮b.js,輸出壓縮資訊 buildb files 任務三 ...