Skip to content

Commit

Permalink
Update tutorial.
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanyan committed Feb 28, 2014
1 parent 38317d3 commit 2b0167c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/tutorial/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Mod and mod plugins are installed and managed via [npm](https://npmjs.org/), the [Node.js](http://nodejs.org/) package manager.

_Mod 0.3.x requires Node.js version `>= 0.8.0`._
_Mod 0.4.x requires Node.js version `>= 0.8.0`._

## Installing

Expand Down Expand Up @@ -52,7 +52,7 @@ module.exports = {
// Project configuration.
tasks: {
sprite: {
"source": "./css/find.css", // required
"src": "./css/find.css", // required
"dest": "./dist/css/find.css", // required
"destImageRoot": "./sprites/", // optional relative to dest path, default "./sprites/"
"maxSize": 60, // optional "kb"
Expand All @@ -62,15 +62,15 @@ module.exports = {
},
"min" : {
"css": {
"source": "./dist/css/*.css",
"src": "./dist/css/*.css",
"dest": "./dist/css"
},
"html": {
"source": "*.html",
"src": "*.html",
"dest": "./dist/"
},
"js": {
"source": "./dist/js/*.js",
"src": "./dist/js/*.js",
"dest": "./dist/js"
}
}
Expand Down

0 comments on commit 2b0167c

Please sign in to comment.