From ba1c08000bc6f7d2b4914b06fedb66bea25e7620 Mon Sep 17 00:00:00 2001 From: Piyush Aryan Date: Tue, 13 Jan 2026 18:09:09 +0530 Subject: [PATCH 1/3] Update version to 6.0.1 and add tslib as a peer dependency in package.json --- projects/imagekit-angular/package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/imagekit-angular/package.json b/projects/imagekit-angular/package.json index b9284103..c1563ca1 100644 --- a/projects/imagekit-angular/package.json +++ b/projects/imagekit-angular/package.json @@ -1,6 +1,6 @@ { "name": "@imagekit/angular", - "version": "6.0.0", + "version": "6.0.1", "description": "Angular SDK for ImageKit.io which implements client-side upload and URL generation for use inside an Angular application.", "keywords": [ "imagekit", @@ -19,11 +19,11 @@ "sideEffects": false, "peerDependencies": { "@angular/common": ">=14.0.0 <22.0.0", - "@angular/core": ">=14.0.0 <22.0.0" + "@angular/core": ">=14.0.0 <22.0.0", + "tslib": "^2.3.0" }, "dependencies": { - "@imagekit/javascript": "^5.1.0", - "tslib": "^2.3.0" + "@imagekit/javascript": "^5.1.0" } } From cfa7b346856fd4a0f83bc9e52e76c71f07acec6d Mon Sep 17 00:00:00 2001 From: Piyush Aryan Date: Wed, 14 Jan 2026 10:48:44 +0530 Subject: [PATCH 2/3] Uninstall @imagekit/angular from test app in e2e workflow --- .github/workflows/e2e.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 6690d545..aa78f582 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -38,7 +38,9 @@ jobs: exit 1 fi echo "✓ SDK built successfully" - + - name: Uninstall @imagekit/angular from test app + working-directory: ./test-app + run: npm uninstall @imagekit/angular - name: Install test app dependencies working-directory: ./test-app run: npm install From cba6717d75338a59d89d4f02249e1f2d5013f7e6 Mon Sep 17 00:00:00 2001 From: Piyush Aryan Date: Wed, 14 Jan 2026 10:51:36 +0530 Subject: [PATCH 3/3] Uninstall @imagekit/angular from the test app during the e2e workflow --- .github/workflows/publish.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8d2bf44e..b5dc7ff2 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,6 +24,7 @@ jobs: npm run build npm pack cd test-app + npm uninstall @imagekit/angular npm install npm install ../dist/imagekit-angular/imagekit-angular-*.tgz --no-save npx playwright install --with-deps