UNPKG

medic-enketo-xslt

Version:

XSL stylesheets for the Enketo XForm transformation to be run client-side in a web browser

24 lines (17 loc) 367 B
/*jshint node:true*/ "use strict"; module.exports = function(grunt) { grunt.loadNpmTasks('grunt-xmllint'); grunt.initConfig({ xmllint: { stylesheets: { dir: 'xsl', options: { suffixes: [ 'xsl' ], }, }, }, }); grunt.registerTask('test', [ 'xmllint' ]); grunt.registerTask('default', [ 'test' ]); }