0.1.0 • Published 10 years ago

grunt-fry v0.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

Grunt-fry

A javascript task runner, build on grunt, make everthing just work as expected

Installation

sudo npm install grunt-fry -g

Command

fry < option >

supported options:

new < project_name > Start a new project

build Compile & compress source code to dist directory

clean Clean dist directory

watch Watch source file, compile & compress changed file to dist directory in real time

help Help info

jshint, concat, copy, cssmin, less, uglify

Structure Rule

-- src                                       -- dist
  |----- css        concat, compress           |------ css
  |----- less       compile, concat, compress  |
  |----- img        compress                   |------ img
  |----- js         concat, compress           |------ js
  |----- views      compress                   |------ views
  


-- less
  | ---- *.less                                | ---- *.less.min.css
  | ---- global/*                              |
  | ---- global.less                           | ---- global.less.min.css        

  | ---- sub                                   |
          | ---- *.less                       | ---- *.less.min.css
          | ---- detail/*                      | 
          | ---- detail.less                   | ---- sub/detail.less.min.css
          | ---- list/*                        | 
          | ---- list.less                     | ---- sub/list.less.min.css


-- js ( css )
  | ---- *.js                                  | ---- *.min.js
  | ---- global/*.js                           | ---- global.min.js

  | ---- sub               
          | ---- *.js                          | ---- sub/*.min.js
          | ---- detail/*.js                   | ---- sub/detail.min.js
  
  

Configuration

engine/config/files Custom source-destnation map

engine/config/cmd Custom command integration

engine/config/npmtasks Registe Custom installed grunt plugin

engine/config/app Custom npm tasks config

engine/tasks/* Write your grunt tasks

Extend Fry

Grunt-fry support install external grunt plugin, It makes grunt-fry pretty flexible.

Extend Fry with grunt-contrib-imagemin example:

  1. Install plugin in project_folder, npm install grunt-contrib-imagemin

  2. Add imagemin-rule to engine/config/app

  3. Add image folder to engine/config/files

  4. Registe ' grunt-contrib-imagemin ' to engine/config/npmtasks

Done, the new command fry imagemin was created.

https://github.com/vellow/grunt-fry

0.1.0

10 years ago

0.0.18

10 years ago

0.0.17

10 years ago

0.0.16

11 years ago

0.0.15

11 years ago

0.0.14

11 years ago

0.0.13

11 years ago

0.0.12

11 years ago

0.0.11

11 years ago

0.0.10

11 years ago

0.0.9

11 years ago

0.0.8

11 years ago

0.0.7

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago

0.0.0

11 years ago