Skip to content

Commit

Permalink
update v17
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch88 committed Feb 27, 2024
1 parent b2db9b3 commit bc45ec8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
echo "Changeset hasChangesets - ${{ steps.changesets.outputs.hasChangesets }}"
echo "Changeset pullRequestNumber - ${{ steps.changesets.outputs.pullRequestNumber }}"
- name: Build
if: github.ref == 'refs/heads/main' && steps.changesets.outputs.hasChangesets == 'true' && steps.changesets.outputs.published == 'false'
run: npx nx run-many -t build --projects=tag:scope:release

- name: Releae dry-run
if: github.ref == 'refs/heads/main' && steps.changesets.outputs.hasChangesets == 'true' && steps.changesets.outputs.published == 'false'
run: npx nx release publish -d
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ docs/public/assets/images/icons
docs/stories/assets/data
docs/dist

test/angular
test/angular/*
!test/angular/base
!test/angular/build.sh
!test/angular/start.sh
Expand Down
7 changes: 7 additions & 0 deletions test/angular/base/v17/src/design-system.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { BalComponentBundle, provideBaloiseDesignSystem } from '@baloise/ds-angular'

export { BalModalService } from '@baloise/ds-angular'

export const balImports = [...BalComponentBundle]

export const balProviders = [provideBaloiseDesignSystem()]

0 comments on commit bc45ec8

Please sign in to comment.