/
githubmirror
/
gulp
Обзор
Документация
Войти
/
githubmirror
/
gulp
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
index.mjs
16 строк
501 B
Blaine Bublitz
feat: Provide an ESM export (#2760)
25 мар 2024, 17:47
Не верифицирован
25 мар 2024, 17:47
b00de68
Код
Авторство
О чём код?
import gulp from "./index.js"; // These are bound to the gulp instance in our CommonJS file // so it is okay to reassign them to export export const watch = gulp.watch; export const task = gulp.task; export const series = gulp.series; export const parallel = gulp.parallel; export const registry = gulp.registry; export const tree = gulp.tree; export const lastRun = gulp.lastRun; export const src = gulp.src; export const dest = gulp.dest; export const symlink = gulp.symlink; export default gulp;