Skip to content

Commit 04ad148

Browse files
authored
Merge pull request #601 from cloudinary/extract-transformation
Reexport Extract Transformation
2 parents 76e21c0 + cae92ff commit 04ad148

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

__TESTS_BUNDLE_SIZE__/bundleSizeTestCases.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ const bundleSizeTestCases:ITestCase[] = [
7474
},
7575
{
7676
name: 'Import all of the SDK',
77-
sizeLimitInKB: 139,
77+
sizeLimitInKB: 140,
7878
importsArray: [
7979
importFromPackage('* as CloudinaryURLGEN')
8080
]
@@ -88,7 +88,7 @@ const bundleSizeTestCases:ITestCase[] = [
8888
},
8989
{
9090
name: 'Import All Actions',
91-
sizeLimitInKB: 64,
91+
sizeLimitInKB: 65,
9292
importsArray: [
9393
importFromPackage('Actions')
9494
]

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,6 @@
150150
}
151151
},
152152
"dependencies": {
153-
"@cloudinary/transformation-builder-sdk": "^1.14.0"
153+
"@cloudinary/transformation-builder-sdk": "^1.15.1"
154154
}
155155
}

src/actions/effect.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ import {
4242
generativeBackgroundReplace,
4343
upscale,
4444
theme,
45-
enhance
45+
enhance,
46+
extract
4647
} from "@cloudinary/transformation-builder-sdk/actions/effect";
4748

4849
export {
@@ -89,5 +90,6 @@ export {
8990
generativeBackgroundReplace,
9091
upscale,
9192
theme,
92-
enhance
93+
enhance,
94+
extract
9395
};

src/actions/effect/Extract.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import {Extract} from "@cloudinary/transformation-builder-sdk/actions/effect/Extract";
2+
3+
export {Extract};

0 commit comments

Comments
 (0)