forked from AkosLukacs/ag-grid-enterprise
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
138 lines (117 loc) · 4.05 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
var gulpTypescript = require('gulp-typescript');
var gulp = require('gulp');
var typescript = require('typescript');
var header = require('gulp-header');
var merge = require('merge2');
var pkg = require('./package.json');
var clean = require('gulp-clean');
var webpack = require('webpack');
var webpackStream = require('webpack-stream');
var path = require('path');
const rename = require("gulp-rename");
var headerTemplate = '// <%= pkg.name %> v<%= pkg.version %>\n';
var bundleTemplate = '// <%= pkg.name %> v<%= pkg.version %>\n';
gulp.task('default', ['webpack-all']);
gulp.task('release', ['webpack-all']);
gulp.task('webpack-all', ['webpack', 'webpack-minify', 'webpack-noStyle', 'webpack-minify-noStyle'], tscTask);
gulp.task('webpack-minify-noStyle', ['tsc'], webpackTask.bind(null, true, false));
gulp.task('webpack-noStyle', ['tsc'], webpackTask.bind(null, false, false));
gulp.task('webpack-minify', ['tsc'], webpackTask.bind(null, true, true));
gulp.task('webpack', ['tsc'], webpackTask.bind(null, false, true));
gulp.task('tsc', ['tsc-src'], tscExportsTask);
gulp.task('tsc-src', ['cleanDist'], tscTask);
gulp.task('tsc-exports', ['cleanExports'], tscExportsTask);
// gulp.task('tsc', ['cleanDist'], tscTask);
gulp.task('cleanDist', cleanDist);
gulp.task('cleanExports', cleanExports);
function cleanDist() {
return gulp
.src('dist', {read: false})
.pipe(clean());
}
function cleanExports() {
return gulp
.src(['./main.d.ts','main.js'], {read: false})
.pipe(clean());
}
function tscTask() {
var project = gulpTypescript.createProject('./tsconfig.json', {typescript: typescript});
var tsResult = gulp
.src('src/**/*.ts')
.pipe(gulpTypescript(project));
return merge([
tsResult.dts
.pipe(header(headerTemplate, {pkg: pkg}))
.pipe(gulp.dest('dist/lib')),
tsResult.js
.pipe(header(headerTemplate, {pkg: pkg}))
.pipe(gulp.dest('dist/lib'))
])
}
function tscExportsTask() {
const project = gulpTypescript.createProject('./tsconfig-exports.json', {typescript: typescript});
const tsResult = gulp
.src('./exports.ts')
.pipe(gulpTypescript(project));
return merge([
tsResult.dts
.pipe(header(headerTemplate, { pkg : pkg }))
.pipe(rename("main.d.ts"))
.pipe(gulp.dest('./')),
tsResult.js
.pipe(header(headerTemplate, { pkg : pkg }))
.pipe(rename("main.js"))
.pipe(gulp.dest('./'))
])
}
function webpackTask(minify, styles) {
var plugins = [];
if (minify) {
plugins.push(
new webpack.optimize.UglifyJsPlugin(
{
output: {
comments: false
},
compress: {
warnings: false
},
mangle: {
except:['csvCreator','CsvCreator']
}
}
)
);
}
var mainFile = styles ? './webpack-with-styles.js' : './webpack.js';
var fileName = 'ag-grid-enterprise';
fileName += minify ? '.min' : '';
fileName += styles ? '' : '.noStyle';
fileName += '.js';
return gulp.src('src/entry.js')
.pipe(webpackStream({
entry: {
main: mainFile
},
output: {
path: path.join(__dirname, "dist"),
filename: fileName,
library: ["agGrid"],
libraryTarget: "umd"
},
//devtool: 'inline-source-map',
module: {
loaders: [
{test: /\.css$/, loader: "style-loader!css-loader"}
]
},
plugins: plugins
}))
.pipe(header(bundleTemplate, {pkg: pkg}))
.pipe(gulp.dest('./dist/'));
}
gulp.task('publishForCI', () => {
return gulp.src("./ag-grid-enterprise*.tgz")
.pipe(rename("ag-grid-enterprise.tgz"))
.pipe(gulp.dest("c:/ci/ag-grid-enterprise/"));
});