Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/jeneratejs/jenerate
Browse files Browse the repository at this point in the history
* 'master' of https://github.com/jeneratejs/jenerate:
  Update README.md
  add status of dependencies
  • Loading branch information
jakemmarsh committed Jan 11, 2016
2 parents 13f4cb8 + 31aca0f commit 754cc3f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# jenerate [![Build Status](https://travis-ci.org/jeneratejs/jenerate.svg)](https://travis-ci.org/jeneratejs/jenerate)
# jenerate [![Build Status](https://travis-ci.org/jeneratejs/jenerate.svg)](https://travis-ci.org/jeneratejs/jenerate) [![Dependency Status](https://david-dm.org/jeneratejs/jenerate.svg)](https://david-dm.org/jeneratejs/jenerate)

A framework-agnostic, customizable Javascript module generator.

Expand Down Expand Up @@ -30,17 +30,17 @@ module.exports = {
component: [
{
template: ReactJen.component,
fileNameSchema: '<<ComponentName>>.js',
outputDir: '../../js/components/'
fileNameSchema: '<% ComponentName %>.js',
outputDir: './js/components/'
},
{
template: ReactJen.componentTest,
fileNameSchema: '<<ComponentName>>.test.js',
outputDir: '../../test/'
fileNameSchema: '<% ComponentName %>.test.js',
outputDir: './test/components/'
}
]

};
```

**Note:** When specifying `outputDir`, this directory must already exist to prevent access errors. It can still be an empty directory.
**Note:** When specifying `outputDir`, this directory must already exist to prevent access errors. It can still be an empty directory.

0 comments on commit 754cc3f

Please sign in to comment.