2.0.0 • Published 5 years ago

grunt-muxml v2.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

grunt-muxml Build Status Travis Coverage Status

An XML parsing and formatting plugin for Grunt

Thin wrapper around muxml to make it a Grunt plugin.

Also available as a gulp plugin.

Install

$ npm install --save-dev grunt-muxml

Usage

'use strict';
module.exports = function (grunt) {
	grunt.initConfig({
		muxml: {
			dist: {
				files: [{
					expand: false,
					cwd: 'fixtures/',
					src: '*initial.xml',
					dest: 'tmp/'
				}],
				options: {
					strict: true
				}
			}
		}
	});

	grunt.loadNpmTasks('grunt-muxml');

	grunt.registerTask('default', [
		'muxml'
	]);
};

Options

See muxml's options, which are all supported.

Related

License

MIT © t1st3

2.0.0

5 years ago

1.0.0

6 years ago

0.1.5

7 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago