broccoli-file-contents-to-json
v0.2.1
Published
Read in some files, output a JSON representation of their contents.
Downloads
6
Maintainers
Readme
broccoli-file-contents-to-json
Read in some files, output a JSON representation of their contents.
Check out the gulp equivalent here.
Installation
$ npm install broccoli-file-contents-to-json
How it works
Given a nested directory of files like so,
my-files
├── bar.txt
├── foo.txt
└── my-folder
└── baz.txt
broccoli-file-contents-to-json reads in each file, and outputs a single JSON file, say output.json
, representing the contents of each file within the folder. Here's an example output:
{
"bar.txt": "Content of bar.",
"foo.txt": "Contents of foo.",
"my-folder/baz.txt": "Contents of baz."
}
Now, you can use output.json
however you'd like.
How to Use
See the Brocfile
packaged in this project for example usage.
rm -rf dist && broccoli build dist
Author
| ![twitter/brianmgonzalez](http://gravatar.com/avatar/f6363fe1d9aadb1c3f07ba7867f0e854?s=70](http://twitter.com/brianmgonzalez "Follow @brianmgonzalez on Twitter") | |---| | Brian Gonzalez |
License
MIT