We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07597ab commit 0809f9cCopy full SHA for 0809f9c
tools/process-images/index.js
@@ -57,10 +57,10 @@ const walk = async dir => {
57
});
58
59
} else if (/(gif)$/i.test(file)) {
60
- Object.entries(SIZES).forEach(([size, [width, height]]) => {
61
- const distDir = path.join(dir, 'dist', size);
62
- fs.copyFileSync(fromPath, `${distDir}/${file}`);
63
- })
+ // Object.entries(SIZES).forEach(([size, [width, height]]) => {
+ // const distDir = path.join(dir, 'dist', size);
+ // fs.copyFileSync(fromPath, `${distDir}/${file}`);
+ // })
64
}
65
66
};
0 commit comments