I am currently trying to get gulp-connect-php running on a gulp4.0 version. I have tried with my existing gulp file and with a standalone project, Neither to much joy.
[10:07:09] Using gulpfile C:\development\gulp4\gulpfile.js
[10:07:09] Starting 'default'...
[10:07:09] Starting 'connect-sync'...
[10:07:09] The following tasks did not complete: default, connect-sync
[10:07:09] Did you forget to signal async completion?
This tends to be the issue that appears with the following gulpfile.js:
var gulp = require('gulp'),
connect = require('gulp-connect-php');
gulp.task('connect-sync', function() {
connect.server({});
});
gulp.task('default', gulp.series('connect-sync'));
Is there any possibility of getting this working with the new gulp4.0?
I am currently trying to get gulp-connect-php running on a gulp4.0 version. I have tried with my existing gulp file and with a standalone project, Neither to much joy.
This tends to be the issue that appears with the following gulpfile.js:
Is there any possibility of getting this working with the new gulp4.0?