Support named exports in mjs files
Created by: perrin4869
Using gulpfile.esm
I can do:
import { src, dest, series, parallel } from "gulp";
When using gulpfile.mjs
, this doesn't work because doesn't officially export the properties src
, dest
, etc.
Was wondering if there is any interest to support this, maybe in v5?