Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions __TESTS_BUNDLE_SIZE__/bundleSizeTestCases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import importFromPackage from "./utils/stringGenerators/importFromPackage";
const bundleSizeTestCases:ITestCase[] = [
{
name: 'Tests CloudinaryImage with Resize',
sizeLimitInKB: 28,
sizeLimitInKB: 29,
importsArray: [
importFromDist('assets/CloudinaryImage', 'CloudinaryImage'),
importFromDist('instance/Cloudinary', 'Cloudinary'),
Expand All @@ -24,7 +24,7 @@ const bundleSizeTestCases:ITestCase[] = [
},
{
name: 'Tests CloudinaryImage with Resize and Adjust',
sizeLimitInKB: 32,
sizeLimitInKB: 33,
importsArray: [
importFromDist('assets/CloudinaryImage', 'CloudinaryImage'),
importFromDist('instance/Cloudinary', 'Cloudinary'),
Expand All @@ -45,7 +45,7 @@ const bundleSizeTestCases:ITestCase[] = [
},
{
name: 'Tests CloudinaryImage image with Resize, adjust and delivery',
sizeLimitInKB: 34,
sizeLimitInKB: 35,
importsArray: [
importFromDist('assets/CloudinaryImage', 'CloudinaryImage'),
importFromDist('instance/Cloudinary', 'Cloudinary'),
Expand Down Expand Up @@ -74,7 +74,7 @@ const bundleSizeTestCases:ITestCase[] = [
},
{
name: 'Import all of the SDK',
sizeLimitInKB: 137,
sizeLimitInKB: 138,
importsArray: [
importFromPackage('* as CloudinaryURLGEN')
]
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,6 @@
}
},
"dependencies": {
"@cloudinary/transformation-builder-sdk": "^1.10.3"
"@cloudinary/transformation-builder-sdk": "^1.12.1"
}
}
}
6 changes: 4 additions & 2 deletions src/actions/effect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ import {
generativeRecolor,
generativeRestore,
upscale,
theme
theme,
enhance
} from "@cloudinary/transformation-builder-sdk/actions/effect";

export {
Expand Down Expand Up @@ -85,5 +86,6 @@ export {
generativeRecolor,
generativeRestore,
upscale,
theme
theme,
enhance
};
6 changes: 4 additions & 2 deletions src/actions/resize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ import {
minimumFit,
limitPad,
fillPad,
auto
auto,
autoPad
} from "@cloudinary/transformation-builder-sdk/actions/resize";

export {
Expand All @@ -33,5 +34,6 @@ export {
minimumFit,
limitPad,
fillPad,
auto
auto,
autoPad
};