forked from imagemin/imagemin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
88 lines (71 loc) · 2.49 KB
/
index.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
import {Buffer} from 'node:buffer';
import {promises as fsPromises} from 'node:fs';
import {promisify} from 'node:util';
import path from 'node:path';
import fs from 'graceful-fs';
import FileType from 'file-type';
import {globby} from 'globby';
import pPipe from 'p-pipe';
import replaceExt from 'replace-ext';
import junk from 'junk';
import convertToUnixPath from 'slash';
const readFile = promisify(fs.readFile);
const writeFile = promisify(fs.writeFile);
const handleFile = async (sourcePath, {destination, baseDirectory, plugins = []}) => {
if (plugins && !Array.isArray(plugins)) {
throw new TypeError('The `plugins` option should be an `Array`');
}
let data = await readFile(sourcePath);
data = await (plugins.length > 0 ? pPipe(...plugins)(data) : data);
const {ext} = await FileType.fromBuffer(data) || {ext: path.extname(sourcePath)};
let destinationPath = destination ? path.join(destination, path.basename(sourcePath)) : undefined;
destinationPath = ext === 'webp' ? replaceExt(destinationPath, '.webp') : destinationPath;
if (destinationPath && baseDirectory) {
destinationPath = path.join(path.dirname(destinationPath), sourcePath.replace(baseDirectory, ''));
}
const returnValue = {
data,
sourcePath,
destinationPath,
};
if (!destinationPath) {
return returnValue;
}
await fsPromises.mkdir(path.dirname(returnValue.destinationPath), {recursive: true});
await writeFile(returnValue.destinationPath, returnValue.data);
return returnValue;
};
export default async function imagemin(input, {glob = true, ...options} = {}) {
if (!Array.isArray(input)) {
throw new TypeError(`Expected an \`Array\`, got \`${typeof input}\``);
}
const unixFilePaths = input.map(filePath => {
let unixPath = convertToUnixPath(filePath);
if (options.baseDirectory) {
unixPath = path.join(options.baseDirectory, unixPath);
}
return unixPath;
});
const filePaths = glob ? await globby(unixFilePaths, {onlyFiles: true}) : input;
return Promise.all(
filePaths
.filter(filePath => junk.not(path.basename(filePath)))
.map(async filePath => {
try {
return await handleFile(filePath, options);
} catch (error) {
error.message = `Error occurred when handling file: ${input}\n\n${error.stack}`;
throw error;
}
}),
);
}
imagemin.buffer = async (input, {plugins = []} = {}) => {
if (!Buffer.isBuffer(input)) {
throw new TypeError(`Expected a \`Buffer\`, got \`${typeof input}\``);
}
if (plugins.length === 0) {
return input;
}
return pPipe(...plugins)(input);
};