forked from zowe/zowe-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
27 lines (24 loc) · 1.1 KB
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
* This program and the accompanying materials are made available under the terms of the *
* Eclipse Public License v2.0 which accompanies this distribution, and is available at *
* https://www.eclipse.org/legal/epl-v20.html *
* *
* SPDX-License-Identifier: EPL-2.0 *
* *
* Copyright Contributors to the Zowe Project. *
* *
*/
const gulp = require('gulp');
require('ts-node/register');
/**
* Development related tasks
*/
const developmentTasks = require("./gulp/DevelopmentTasks");
gulp.task("lint", developmentTasks.lint);
gulp.task("updateLicense", developmentTasks.license);
gulp.task('doc', developmentTasks.doc);
/**
* Cleanup related tasks
*/
const cleanupTasks = require("./gulp/CleanupTasks");
gulp.task('cleanTypedoc', cleanupTasks.cleanTypedoc);