Skip to content

Instantly share code, notes, and snippets.

@crwgregory
Last active February 16, 2021 10:05
Show Gist options
  • Save crwgregory/fbbdc1352f0a9de5b0b217b3280f59b3 to your computer and use it in GitHub Desktop.
Save crwgregory/fbbdc1352f0a9de5b0b217b3280f59b3 to your computer and use it in GitHub Desktop.
Simple gulp file to run Composer install
'use strict';
// Besure gulp-composer is installed
// npm install --save gulp-composer
var gulp = require('gulp');
var composer = require('gulp-composer');
gulp.task('default', ['composer']);
gulp.task('composer', function() {
composer()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment