Skip to content

Commit

Permalink
feat(chore): error on builds #0
Browse files Browse the repository at this point in the history
  • Loading branch information
ZurabDev committed Sep 27, 2024
1 parent 76a9115 commit 93ede0d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main-publish-ng17.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
name: dist
path: ./dist

- run: cd dist/libs/components && npm publish --access public --verbose
- run: cd dist/libs/components && npm publish --tag ng17 --access public --verbose

publish-i18n:
needs: build
Expand Down
2 changes: 1 addition & 1 deletion libs/components/src/lib/components/cron/model.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { PrizmCarouselArrayContent } from '../input';
import { PrizmDay, PrizmTime } from '../../@core';
import { PrizmCarouselArrayContent } from '../input/carousel/carousel-content/carousel-array.class';

export enum PrizmCronUiBaseType {
every,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ import { PrizmAbstractTestId } from '@prizm-ui/core';
import { PrizmTreeSelectItemsDirective } from './tree-select-items.directive';
import { PRIZM_TREE_SELECT_ITEMS_VIEW_CONTAINER_REF } from './token';
import { BehaviorSubject } from 'rxjs';
import { PrizmInputTextComponent } from '../../input';
import { PrizmInputCommonModule, PrizmInputTextComponent } from '../../input';
import { PrizmTreeSelectSearchDirective } from './search/tree-select-search.directive';
import { PrizmDropdownHostComponent } from '../dropdown-host';
import { PrizmDestroyService } from '@prizm-ui/helpers';
import { debounceTime, takeUntil, tap } from 'rxjs/operators';
import { PrizmTreeSelectEmptyTextDirective } from './tree-select-empty-text.directive';
import { PrizmTreeSelectSearchLabelDirective } from './tree-select-search-label.directive';
import { PolymorphOutletDirective } from '../../../directives';
import { FormsModule } from '@angular/forms';

@Component({
selector: 'prizm-input-tree-select-data-list-wrapper',
Expand All @@ -35,6 +36,8 @@ import { PolymorphOutletDirective } from '../../../directives';
PrizmDataListWrapperComponent,
PrizmInputTextComponent,
PolymorphOutletDirective,
FormsModule,
PrizmInputCommonModule,
],
providers: [
PrizmDestroyService,
Expand Down

0 comments on commit 93ede0d

Please sign in to comment.