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 .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
if [ "$IS_STABLE" = "true" ]; then
npm publish --provenance --access public
else
npm publish --provenance --access public --tag next
npm publish --provenance --access public --tag beta
fi
cd ../..
done
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@ Sponsoring means you directly contribute to new features, improvements, and main
| @rdlabo/ionic-angular-scroll-header | This is directive for scroll with Header. | [/project/scroll-header](https://github.com/rdlabo-team/ionic-angular-library/tree/main/projects/scroll-header#readme) |
| @rdlabo/ngx-cdk-scroll-strategies | This is directive for virtual scroll of dynamic item size. | [/project/scroll-strategies](https://github.com/rdlabo-team/ionic-angular-library/tree/main/projects/scroll-strategies#readme) |

### Release

All libraries (including kit) share one version line and are released together via `npm run release` (`np --no-tests --no-publish`) → `v*` tag → GitHub Actions `release.yml`.

- Stable `vX.Y.Z` → npm `latest`
- Prerelease `vX.Y.Z-N` (np style) → npm dist-tag **`beta`** (version string stays `X.Y.Z-N`)

### Kit Auth demo

The demo app includes a **Kit** tab with a Firebase Auth harness (`/main/kit/auth`).
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@
"test:headless": "CHROME_BIN=/usr/bin/google-chrome ng test --watch=false",
"cap": "npm run build -- --configuration production && npx cap copy",
"fmt": "prettier --parser typescript --write \"./**/*.ts\" && prettier --parser angular --write \"./**/*.html\"",
"prebuild:kit": "ng build kit --configuration=production",
"prebuild:photo-editor": "ng build photo-editor --configuration=production",
"prebuild:scroll-header": "sass projects/scroll-header/src/assets/scroll-header.directive.scss projects/scroll-header/css/scroll-header.directive.css && ng build scroll-header --configuration=production",
"prebuild:scroll-strategies": "ng build scroll-strategies --configuration=production",
"prebuild": "npm run prebuild:photo-editor && npm run prebuild:scroll-header && npm run prebuild:scroll-strategies",
"prebuild": "npm run prebuild:kit && npm run prebuild:photo-editor && npm run prebuild:scroll-header && npm run prebuild:scroll-strategies",
"prestart": "npm run prebuild",
"release": "np --no-tests --no-publish",
"lint": "ng lint",
Expand Down
4 changes: 4 additions & 0 deletions projects/kit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ A small ergonomic kit for Ionic Angular applications. It provides:

```bash
npm install @rdlabo/ionic-angular-kit
# prereleases (np: X.Y.Z-N) are on the npm dist-tag `beta`:
# npm install @rdlabo/ionic-angular-kit@beta
```

Kit shares the repo `v*` release line with the other libraries (see root README § Release).

### Peer dependencies

| Package | Version |
Expand Down
2 changes: 1 addition & 1 deletion projects/kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rdlabo/ionic-angular-kit",
"version": "0.0.27",
"version": "21.1.1",
"peerDependencies": {
"@angular/common": "^21.0.0",
"@angular/core": "^21.0.0",
Expand Down