forked from carbon-design-system/carbon-components-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
153 lines (135 loc) · 3.95 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
////////////////////////////////////
// Gulp all the things
////////////////////////////////////
"use strict";
//
// Requires
// =================================
const gulp = require("gulp");
const sass = require("sass");
const tap = require("gulp-tap");
const path = require("path");
const fs = require("fs");
//
// Variables
// =================================
const dirs = {
TS: [
"src/**/*.ts",
"!src/**/*.spec.ts",
"!src/**/*.stories.ts"
],
i18n: "src/i18n/**/*.json",
DIST: "dist"
};
const licenseTemplate = `/**
*
* carbon-angular v@PACKAGE_VERSION@ | @FILE_NAME@
*
* Copyright 2014, @THIS_YEAR@ IBM
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
\n
`;
//
// Build tasks
// =================================
const buildAngular = () =>
gulp.src(dirs.TS)
.pipe(replaceTemplates())
.pipe(gulp.dest(`${dirs.DIST}/src`));
const buildI18n = () =>
gulp.src(dirs.i18n)
.pipe(gulp.dest(`${dirs.DIST}/i18n`));
const moveLicense = () =>
gulp.src("LICENSE.md")
.pipe(gulp.dest(dirs.DIST));
const buildLicense = () =>
gulp.src([
`${dirs.DIST}/**/*.scss`,
`${dirs.DIST}/**/*.css`,
`${dirs.DIST}/**/*.ts`,
`${dirs.DIST}/**/*.js`
])
.pipe(licenseHeaders())
.pipe(gulp.dest(dirs.DIST));
const buildPackage = () =>
gulp.src("package.json")
.pipe(gulp.dest(dirs.DIST));
const buildReadme = () =>
gulp.src("README.md")
.pipe(gulp.dest(dirs.DIST));
//
// Running tasks
// =================================
const build = gulp.series(buildAngular, buildI18n);
const buildMeta = gulp.parallel(moveLicense, buildLicense, buildReadme);
module.exports = {
build,
buildAngular,
buildI18n,
buildLicense,
buildPackage,
buildReadme,
moveLicense,
buildMeta,
default: build
};
//
// Functions
// =================================
function licenseHeaders() {
return tap(function(file) {
const packageJSON = require("./package.json");
const updatedTemplate = licenseTemplate
.replace("@PACKAGE_VERSION@", packageJSON.version)
.replace("@FILE_NAME@", path.basename(file.path))
.replace("@THIS_YEAR@", new Date().getFullYear());
file.contents = Buffer.concat([new Buffer(updatedTemplate), file.contents]);
});
}
function replaceTemplates() {
// regex borrwed from https://github.com/TheLarkInn/angular2-template-loader/blob/1403302e985bf689ee49e9dd8bb953225f32737b/index.js#L5-L7
const templateUrlRegex = /templateUrl\s*:(\s*['"`](.*?)['"`])/g;
const stylesRegex = /styleUrls *:(\s*\[[^\]]*?\])/g;
function templateToString(file, url) {
url = url.trim().replace(/^\"/g, "").replace(/\"$/g, "");
let fileStr = path.resolve(file.path, "..", url);
return fs.readFileSync(fileStr).toString("utf-8");
}
function stylesToString(file, urls) {
urls = JSON.parse(urls);
let strStyles = "";
for (let url of urls) {
const filePath = path.resolve(file.path, "..", url);
if (fs.existsSync(filePath)) {
strStyles += sass.renderSync({
file: filePath
}).css;
} else {
console.warn(`file not found ${filePath} in ${file.path} this may be an error.`);
}
}
return strStyles;
}
return tap(function(file) {
if (path.extname(file.path) === ".ts") {
let fileStr = file.contents.toString("utf-8");
if (fileStr.indexOf(templateUrlRegex) < 0 || fileStr.indexOf(stylesRegex) < 0) {
fileStr = fileStr.replace(templateUrlRegex, (match, url) => `template: \`${templateToString(file, url)}\``)
.replace(stylesRegex, (match, urls) => `styles: [\`${stylesToString(file, urls)}\`]`);
file.contents = new Buffer(fileStr);
}
}
});
}