| 12345678910111213141516171819202122 |
- /**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- 'use strict';
- const git = require( '../utils/git' );
- const PassThrough = require( 'stream' ).PassThrough;
- /**
- * Pushes changes of current branch in repository to default origin
- *
- * @param {String} workdir
- * @returns {Object} stream
- */
- module.exports = ( workdir ) => {
- git.push( workdir );
- // Return dummy stream to inform gulp about finishing task
- return new PassThrough();
- };
|