forked from highcharts/highcharts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
113 lines (105 loc) · 2.25 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
* Copyright (C) Highsoft AS
*/
/* eslint quote-props: 0 */
'use strict';
const Gulp = require('gulp');
const GulpForwardReference = require('undertaker-forward-reference');
Gulp.registry(new GulpForwardReference());
/* *
*
* Gulp Tasks
*
* */
(function (tasks) {
tasks.forEach(
gulpTask => require('./tools/gulptasks/' + gulpTask)
);
}([
'common',
'common-browserify',
'common-webpack',
'dist',
'dist-ant',
'dist-api',
'dist-clean',
'dist-compress',
'dist-copy',
'dist-examples',
'dist-productsjs',
'dist-release',
'dist-testresults',
'dist-upload-code',
'dist-upload-mapcollection',
'dist-upload-errors',
'dist-upload-samples-resources',
'dist-upload-studies',
'dist-upload-more',
'jsdoc',
'jsdoc-classes',
'jsdoc-clean',
'jsdoc-dts',
'jsdoc-namespace',
'jsdoc-options',
'jsdoc-server',
'jsdoc-watch',
'jsdoc-websearch',
'jsdoc-wrappers',
'lint',
'lint-dts',
'lint-js',
'lint-samples',
'lint-ts',
'prep-release',
'scripts',
'scripts-clean',
'scripts-code',
'scripts-compile',
'scripts-css',
'scripts-js',
'scripts-ts',
'scripts-vendor',
'scripts-watch',
'test',
'test-tree',
'reset-visual-references',
'tsdoc',
'tsdoc-debug',
'tsdoc-next',
'tsdoc-watch',
'update',
'upload-wrapper-apidocs',
'unsorted/build-modules',
'unsorted/compare-filesize',
'unsorted/default',
'unsorted/filesize',
'unsorted/get-filesizes',
'unsorted/nightly',
'unsorted/update-vendor',
'unsorted/upload-api',
'unsorted/upload-files',
'update-pr-testresults',
'pr-size-table'
]));
/* *
*
* Gulp Task Aliases
*
* */
(function (tasks) {
Object
.keys(tasks)
.forEach(alias => Gulp.task(alias, Gulp.series(tasks[alias])));
}({
'clean-api': 'jsdoc-clean',
'clean-code': 'series-clean',
'clean-dist': 'dist-clean',
'compile': 'scripts-compile',
'compile-lib': 'scripts-vendor',
'copy-graphics-to-dist': 'dist-copy',
'copy-to-dist': 'dist-copy',
'create-productjs': 'dist-productsjs',
'examples': 'dist-examples',
'start-api-server': 'jsdoc-server',
'styles': 'scripts-css'
}));