4 Commits

Author SHA1 Message Date
a2b408a7bf 1.0.18 2024-02-14 01:56:00 +01:00
67fdcf0362 fix(core): update 2024-02-14 01:56:00 +01:00
c3f840e1be 1.0.17 2023-12-03 23:32:48 +01:00
6840d94517 fix(core): update 2023-12-03 23:32:47 +01:00
4 changed files with 583 additions and 600 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "@push.rocks/smartjimp", "name": "@push.rocks/smartjimp",
"version": "1.0.16", "version": "1.0.18",
"private": false, "private": false,
"description": "a tool fr working with images in TypeScript", "description": "a tool fr working with images in TypeScript",
"main": "dist_ts/index.js", "main": "dist_ts/index.js",
@ -10,23 +10,24 @@
"scripts": { "scripts": {
"test": "(tstest test/)", "test": "(tstest test/)",
"build": "(tsbuild --allowimplicitany)", "build": "(tsbuild --allowimplicitany)",
"buildDocs": "tsdoc" "buildDocs": "tsdoc",
"localPublish": "gitzone commit && pnpm run build && pnpm publish && pnpm publish --access public --registry=\"https://registry.npmjs.org\""
}, },
"devDependencies": { "devDependencies": {
"@git.zone/tsbuild": "^2.1.66", "@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsrun": "^1.2.44", "@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77", "@git.zone/tstest": "^1.0.86",
"@push.rocks/tapbundle": "^5.0.8", "@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.10.2" "@types/node": "^20.11.17"
}, },
"dependencies": { "dependencies": {
"@push.rocks/levelcache": "^3.0.3", "@push.rocks/levelcache": "^3.0.8",
"@push.rocks/smartfile": "^11.0.4", "@push.rocks/smartfile": "^11.0.4",
"@push.rocks/smarthash": "^3.0.4", "@push.rocks/smarthash": "^3.0.4",
"@push.rocks/smartpath": "^5.0.5", "@push.rocks/smartpath": "^5.0.5",
"@push.rocks/smartrequest": "^2.0.15", "@push.rocks/smartrequest": "^2.0.15",
"jimp": "^0.22.10", "jimp": "^0.22.10",
"sharp": "^0.33.0" "sharp": "^0.33.2"
}, },
"files": [ "files": [
"ts/**/*", "ts/**/*",

1163
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@push.rocks/smartjimp', name: '@push.rocks/smartjimp',
version: '1.0.16', version: '1.0.18',
description: 'a tool fr working with images in TypeScript' description: 'a tool fr working with images in TypeScript'
} }

View File

@ -66,6 +66,9 @@ export class SmartJimp {
let sharpImage = sharp(assetBufferArg); let sharpImage = sharp(assetBufferArg);
sharpImage = sharpImage.resize(assetVariationArg.width, assetVariationArg.height); sharpImage = sharpImage.resize(assetVariationArg.width, assetVariationArg.height);
const resultResize = sharpImage.resize(assetVariationArg.width, assetVariationArg.height); const resultResize = sharpImage.resize(assetVariationArg.width, assetVariationArg.height);
if (assetVariationArg.invert) {
// TODO: implement invert
}
switch (assetVariationArg.format) { switch (assetVariationArg.format) {
case 'avif': case 'avif':
sharpImage = resultResize.avif(); sharpImage = resultResize.avif();