-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtransform.js
30 lines (22 loc) · 856 Bytes
/
transform.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
const path = require('path');
function transform(template, format, files) {
let htmlOutput = template;
for (let fileInfo of files) {
const { filePath, contentHash } = fileInfo;
const file = path.basename(filePath);
const extension = file.split('.').slice(-1).join('');
const fileName = file
.split('.')
.slice(0, -1)
.join('')
.replace(/[^a-z0-9_]/gi, '');
const regex = new RegExp(`(["'].*)(${fileName}\\.${extension})(["'])`, 'i');
const formattedFileName = format
.replace(/\[name\]/i, fileName)
.replace(/\[contenthash\]/i, contentHash)
.replace(/\[ext\]/i, extension);
htmlOutput = htmlOutput.replace(regex, `$1${formattedFileName}$3`);
}
return htmlOutput;
}
module.exports = transform;