Skip to content

Commit ba1c9a0

Browse files
authored
fix: debug auto release, again (#943)
1 parent 7e14646 commit ba1c9a0

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

packages/casl-angular/src/AbilityService.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ export class AbilityService<T extends AnyAbility> {
77
readonly ability$: Observable<T>;
88

99
constructor(@Inject(PureAbility) ability: T) {
10+
// IGNORE: this comment. it's for release debugging
1011
this.ability$ = new Observable((observer) => {
1112
observer.next(ability);
1213
return ability.on('updated', () => observer.next(ability));
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
export * from './pipes';
22
export * from './AbilityModule';
33
export * from './AbilityService';
4-
// IGNORE: test release

0 commit comments

Comments
 (0)