[ci] format
This commit is contained in:
parent
4685f55549
commit
0c8c5fc919
2 changed files with 13 additions and 13 deletions
|
@ -35,42 +35,42 @@ export interface RotateOptions {
|
||||||
// MozJPEG
|
// MozJPEG
|
||||||
import type { MozJPEGModule as MozJPEGEncodeModule } from './mozjpeg/mozjpeg_enc'
|
import type { MozJPEGModule as MozJPEGEncodeModule } from './mozjpeg/mozjpeg_enc'
|
||||||
import mozDec from './mozjpeg/mozjpeg_node_dec.js'
|
import mozDec from './mozjpeg/mozjpeg_node_dec.js'
|
||||||
|
import mozDecWasm from './mozjpeg/mozjpeg_node_dec.wasm.js'
|
||||||
import mozEnc from './mozjpeg/mozjpeg_node_enc.js'
|
import mozEnc from './mozjpeg/mozjpeg_node_enc.js'
|
||||||
import mozEncWasm from './mozjpeg/mozjpeg_node_enc.wasm.js';
|
import mozEncWasm from './mozjpeg/mozjpeg_node_enc.wasm.js'
|
||||||
import mozDecWasm from './mozjpeg/mozjpeg_node_dec.wasm.js';
|
|
||||||
|
|
||||||
// WebP
|
// WebP
|
||||||
import type { WebPModule as WebPEncodeModule } from './webp/webp_enc'
|
import type { WebPModule as WebPEncodeModule } from './webp/webp_enc'
|
||||||
import webpDec from './webp/webp_node_dec.js'
|
import webpDec from './webp/webp_node_dec.js'
|
||||||
|
import webpDecWasm from './webp/webp_node_dec.wasm.js'
|
||||||
import webpEnc from './webp/webp_node_enc.js'
|
import webpEnc from './webp/webp_node_enc.js'
|
||||||
import webpEncWasm from './webp/webp_node_enc.wasm.js';
|
import webpEncWasm from './webp/webp_node_enc.wasm.js'
|
||||||
import webpDecWasm from './webp/webp_node_dec.wasm.js';
|
|
||||||
|
|
||||||
// AVIF
|
// AVIF
|
||||||
import type { AVIFModule as AVIFEncodeModule } from './avif/avif_enc'
|
import type { AVIFModule as AVIFEncodeModule } from './avif/avif_enc'
|
||||||
import avifDec from './avif/avif_node_dec.js'
|
import avifDec from './avif/avif_node_dec.js'
|
||||||
|
import avifDecWasm from './avif/avif_node_dec.wasm.js'
|
||||||
import avifEnc from './avif/avif_node_enc.js'
|
import avifEnc from './avif/avif_node_enc.js'
|
||||||
import avifEncWasm from './avif/avif_node_enc.wasm.js';
|
import avifEncWasm from './avif/avif_node_enc.wasm.js'
|
||||||
import avifDecWasm from './avif/avif_node_dec.wasm.js';
|
|
||||||
|
|
||||||
// PNG
|
// PNG
|
||||||
import * as pngEncDec from './png/squoosh_png.js';
|
import * as pngEncDec from './png/squoosh_png.js'
|
||||||
import pngEncDecWasm from './png/squoosh_png_bg.wasm.js';
|
import pngEncDecWasm from './png/squoosh_png_bg.wasm.js'
|
||||||
const pngEncDecInit = () =>
|
const pngEncDecInit = () =>
|
||||||
pngEncDec.default(pngEncDecWasm)
|
pngEncDec.default(pngEncDecWasm)
|
||||||
|
|
||||||
// OxiPNG
|
// OxiPNG
|
||||||
import * as oxipng from './png/squoosh_oxipng.js';
|
import * as oxipng from './png/squoosh_oxipng.js'
|
||||||
import oxipngWasm from './png/squoosh_oxipng_bg.wasm.js';
|
import oxipngWasm from './png/squoosh_oxipng_bg.wasm.js'
|
||||||
const oxipngInit = () => oxipng.default(oxipngWasm)
|
const oxipngInit = () => oxipng.default(oxipngWasm)
|
||||||
|
|
||||||
// Resize
|
// Resize
|
||||||
import * as resize from './resize/squoosh_resize.js'
|
import * as resize from './resize/squoosh_resize.js'
|
||||||
import resizeWasm from './resize/squoosh_resize_bg.wasm.js';
|
import resizeWasm from './resize/squoosh_resize_bg.wasm.js'
|
||||||
const resizeInit = () => resize.default(resizeWasm)
|
const resizeInit = () => resize.default(resizeWasm)
|
||||||
|
|
||||||
// rotate
|
// rotate
|
||||||
import rotateWasm from './rotate/rotate.wasm.js';
|
import rotateWasm from './rotate/rotate.wasm.js'
|
||||||
|
|
||||||
// Our decoders currently rely on a `ImageData` global.
|
// Our decoders currently rely on a `ImageData` global.
|
||||||
import ImageData from './image_data.js'
|
import ImageData from './image_data.js'
|
||||||
|
|
|
@ -4,7 +4,7 @@ import * as fs from 'node:fs';
|
||||||
|
|
||||||
const result = await fastglob(fileURLToPath(new URL('./src/**/*.wasm', import.meta.url)));
|
const result = await fastglob(fileURLToPath(new URL('./src/**/*.wasm', import.meta.url)));
|
||||||
|
|
||||||
for(const filepath of result) {
|
for (const filepath of result) {
|
||||||
const buffer = await fs.promises.readFile(filepath);
|
const buffer = await fs.promises.readFile(filepath);
|
||||||
const base64 = buffer.toString('base64');
|
const base64 = buffer.toString('base64');
|
||||||
const source = `export default Buffer.from(${JSON.stringify(base64)}, 'base64');`;
|
const source = `export default Buffer.from(${JSON.stringify(base64)}, 'base64');`;
|
||||||
|
|
Loading…
Reference in a new issue