UNPKG

vide

Version:

Easy as hell jQuery plugin for video backgrounds.

29 lines (23 loc) 731 B
/*jshint node:true */ module.exports = function( Release ) { var shell = require( "shelljs" ); Release.define( { npmPublish: true, issueTracker: "github", changelogShell: function() { return "# Changelog for QUnit v" + Release.newVersion + "\n"; }, generateArtifacts: function( done ) { Release.exec( "grunt", "Grunt command failed" ); shell.mkdir( "-p", "qunit" ); shell.cp( "-r", "dist/*", "qunit/" ); shell.mkdir( "-p", "dist/cdn" ); shell.cp( "dist/qunit.js", "dist/cdn/qunit-" + Release.newVersion + ".js" ); shell.cp( "dist/qunit.css", "dist/cdn/qunit-" + Release.newVersion + ".css" ); done( [ "qunit/qunit.js", "qunit/qunit.css" ] ); } } ); }; module.exports.dependencies = [ "shelljs@0.2.6" ];