fixing docs

This commit is contained in:
Leo Horie 2014-10-12 21:53:50 -04:00
parent b75afdc893
commit 90323c978a

View file

@ -49,7 +49,7 @@ npm install -g sweet.js
To compile a file, type:
```
sjs --module /mithril.compile.sjs --output <output-filename>.js <input-filename>.js
sjs --module /template-compiler.sjs --output <output-filename>.js <input-filename>.js
```
---
@ -84,7 +84,7 @@ Once installed, create two files in the root of your project, `package.json` and
module.exports = function(grunt) {
grunt.initConfig({
sweetjs: {
modules: ["mithril.compile.sjs"],
modules: ["template-compiler.sjs"],
compile: {expand: true, cwd: ".", src: "**/*.js", dest: "destination-folder-goes-here/"}
}
});