mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 06:27:52 +00:00
init
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
* @title gulpfile.babel.js
|
||||
* @description A directory file loader to include all the gulp tasks
|
||||
*
|
||||
*/
|
||||
|
||||
// Dependencies
|
||||
import gulp from 'gulp';
|
||||
|
||||
import { boilerplate } from './tasks/boilerplate';
|
||||
import { watch } from './tasks/watch';
|
||||
import { build } from './tasks/build';
|
||||
import { copy } from './tasks/copy';
|
||||
import { copyRelease } from './tasks/copy-release';
|
||||
import { cleaner } from './tasks/clean';
|
||||
import { copyPackageFiles } from './tasks/copy-packagefiles';
|
||||
import { buildArchives } from './tasks/archives';
|
||||
import { release } from './tasks/release';
|
||||
|
||||
exports.boilerplate = boilerplate;
|
||||
exports.watch = watch;
|
||||
exports.build = build;
|
||||
exports.copyFiles = copy;
|
||||
exports.copyRelease = copyRelease;
|
||||
exports.cleaner = cleaner;
|
||||
exports.copyPackageFiles = copyPackageFiles;
|
||||
exports.archiver = buildArchives;
|
||||
exports.release = release;
|
||||
Reference in New Issue
Block a user