Skip to content
Closed
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
4 changes: 3 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions projects/imagekit-angular/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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"
}
}

Loading