grunt-convert
Version:
Convert between XML, JSON and YAML, from one format to another.
42 lines (37 loc) • 571 B
Markdown
## Convert JSON to XML
```js
grunt.initConfig({
convert: {
options: {
explicitArray: false,
},
json2xml: {
options: {
xml: {
header: true
}
},
src: ['test/fixtures/sublime.json'],
dest: 'tmp/result/sublime.xml'
}
}
});
```
## Convert JSON to YAML
```js
grunt.initConfig({
convert: {
json2yml: {
files: [
{
expand: true,
cwd: 'test/fixtures/',
src: ['**/*.json'],
dest: 'tmp/result/',
ext: '.yml'
}
]
}
}
});
```