Skip to content

Commit 2028912

Browse files
committed
chore: support squoosh success
1 parent 7b06522 commit 2028912

11 files changed

+26
-31
lines changed

playground/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"@vitejs/plugin-vue": "^3.2.0",
2020
"typescript": "^4.6.4",
2121
"unplugin-imagemin": "workspace:*",
22-
"vite": "^3.2.3",
22+
"vite": "^4.0.3",
2323
"vue-tsc": "^1.0.9"
2424
}
2525
}

playground/vite.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default defineConfig({
1717
// beforeBundle: true,
1818
// // beforeBundle: false,
1919
// mode: 'sharp',
20-
mode: 'squoosh',
20+
// mode: 'squoosh',
2121
// compress: {
2222
// // jpeg: {
2323
// // quality: 1,

pnpm-lock.yaml

+16-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/compressOptions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export const sharpOptions: any = {
265265
};
266266

267267
export const resolveDefaultOptions = {
268-
mode: 'sharp',
268+
mode: 'squoosh',
269269
conversion: [],
270270
beforeBundle: true,
271271
cache: false,

src/core/context.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -256,16 +256,19 @@ export default class Context {
256256
const baseDir = basename(item, extname(item));
257257
const { cacheDir, assetsDir } = this.config;
258258
const imageName = `${baseDir}.${generateSrc}`;
259-
const cachedFilename = join(cacheDir, imageName);
259+
// const cachedFilename = join(cacheDir, imageName);
260260
const encodedWith = await image.encodedWith[type!];
261261
newSize = encodedWith.size;
262+
// TODO cache
262263
// if (!(await exists(cachedFilename))) {
263-
await fs.writeFile(cachedFilename, encodedWith.binary);
264+
// console.log(cachedFilename);
265+
// await fs.writeFile(cachedFilename, encodedWith.binary);
264266
// }
265267
const source = {
266268
fileName: join(assetsDir, imageName),
267269
name: imageName,
268-
source: (await fs.readFile(cachedFilename)) as any,
270+
// source: (await fs.readFile(cachedFilename)) as any,
271+
source: encodedWith.binary,
269272
isAsset: true,
270273
type: 'asset',
271274
};

src/core/log.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export const bgCyan = (res: string | number) => colorResult(res, 'bgCyan');
2424
// eslint-disable-next-line max-params
2525
export function compressSuccess(filePath, newSize, oldSize, start) {
2626
console.log(
27-
chalk.blue(filePath),
27+
chalk.blue(filePath.replace('/', '')),
2828
chalk.yellow(size(oldSize).toString()),
2929
'➡️',
3030
chalk.green(size(newSize).toString()),

wallhaven-2ykjxm.3b758b85.png

-75.4 KB
Binary file not shown.

wallhaven-kx9rx7.684af13f.png

-294 KB
Binary file not shown.

wallhaven-x61xdo.cea4f9cf.jpg

-1.16 MB
Binary file not shown.

wallhaven-zyxvqy.80e51230.jpeg

-333 KB
Binary file not shown.

wallhaven.7a590226.png

-182 KB
Binary file not shown.

0 commit comments

Comments
 (0)