#Grunt Need: Node.js installed
Install Steps
- Installing the CLI run command
1 | npm install -g grunt-cli |
- edit package.json and Gruntfile.js
1 | { |
run npm install in command
1 | module.exports = function (grunt) { |
run grunt in command
這樣子 grunt 就會監控 在 app 資料夾下的 ts 檔案異動,並同時做 complie 的動作,如果有錯誤,會產生 complie error 的訊息。