mirror of
https://github.com/Deutscher-Tischfussballbund/com_sportsmanager.git
synced 2026-06-10 06:27:52 +00:00
23 lines
482 B
JavaScript
23 lines
482 B
JavaScript
/**
|
|
* Automatic Release
|
|
*
|
|
* @description: Deploy Task for an automated Build Process
|
|
*/
|
|
|
|
import { series, parallel } from 'gulp'
|
|
|
|
import { copyRelease } from './copy-release'
|
|
import { copyPackageFiles } from './copy-packagefiles'
|
|
import { buildArchives } from './archives'
|
|
import { cleaner, deleteReleasefilesFolder } from './clean';
|
|
|
|
// Config
|
|
import { config } from '../config';
|
|
|
|
export const release = series(
|
|
cleaner,
|
|
copyRelease,
|
|
copyPackageFiles,
|
|
buildArchives
|
|
);
|