First, Install gulp and gulp-concat plugin to your project localy
npm install --save-dev gulp gulp-concat
and add gulp-concat task to your gulpfile.js
var gulp = require('gulp');
var concat = require('gulp-concat');
gulp.task('default', function() {
});
gulp.task('css', function() {
...