Create a compatible zip file for the mCAP
npm install mcap-easy-zipCreate a compatible zip file for the mCAP
``bash`
$ npm install --save mcap-easy-zip
`javascript
var mcapEasyZip = require('../');
var options = {
pattern: ['!*/.md', '!node_modules']
};
mcapEasyZip('./content/', './content.zip', options, function(err, files) {
if (err) {
console.log(err);
return;
}
console.log(files);
});
``
_(Nothing yet)_
Copyright (c) 2014 M-Way Solutions GmbH. Licensed under the MIT license.