Skip to content

Commit

Permalink
fix: debug auto release, again (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
stalniy authored Jul 14, 2024
1 parent 7e14646 commit ba1c9a0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions packages/casl-angular/src/AbilityService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export class AbilityService<T extends AnyAbility> {
readonly ability$: Observable<T>;

constructor(@Inject(PureAbility) ability: T) {
// IGNORE: this comment. it's for release debugging
this.ability$ = new Observable((observer) => {
observer.next(ability);
return ability.on('updated', () => observer.next(ability));
Expand Down
1 change: 0 additions & 1 deletion packages/casl-angular/src/public.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
export * from './pipes';
export * from './AbilityModule';
export * from './AbilityService';
// IGNORE: test release

0 comments on commit ba1c9a0

Please sign in to comment.