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
2 changes: 1 addition & 1 deletion __TESTS_BUNDLE_SIZE__/bundleSizeTestCases.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const bundleSizeTestCases:ITestCase[] = [
name: 'Import all of the SDK',
sizeLimitInKB: 110,
importsArray: [
importFromBase('CloudinarySDK')
importFromBase('CloudinaryBaseSDK')
]
}
];
Expand Down
2 changes: 1 addition & 1 deletion rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default [{
{
file: 'dist/bundles/umd/base.js',
format: 'umd',
name:'cloudinaryBase'
name:'CloudinaryBaseSDK'
}
],
plugins: [
Expand Down
7 changes: 3 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ import {createCloudinaryV1URL} from "./backwards/createCloudinaryURL";
/**
* @namespace SDK
*/

const CloudinarySDK = {
const CloudinaryBaseSDK = {
Transformation,
ImageTransformation,
VideoTransformation,
Expand All @@ -37,6 +36,6 @@ export {
CloudinaryVideo,
CloudinaryFile,
createCloudinaryV1URL,
CloudinarySDK,
CloudinarySDK as default
CloudinaryBaseSDK,
CloudinaryBaseSDK as default
};