Skip to content

Commit

Permalink
chore(deps): update taiga-ui dev infra to v0.158.0 (#470)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga-family-bot authored Sep 5, 2024
1 parent bfa3373 commit 15ef069
Show file tree
Hide file tree
Showing 4 changed files with 110 additions and 34 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,22 @@ jobs:
steps:
- uses: taiga-family/ci/actions/setup/[email protected]
- uses: taiga-family/ci/actions/setup/[email protected]
- run: npm run prettier -- --check
- run: npm run lint
- run: |
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
npm run prettier -- --write
npm run stylelint -- --fix
npm run lint -- --fix
else
npm run prettier -- --check
npm run stylelint
npm run lint
fi
- run: npm run test
- run: npm run build:library
- run: npm run build:demo
- uses: taiga-family/ci/actions/auto/[email protected]
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}

concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
Expand Down
113 changes: 89 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,12 +106,12 @@
"@nx/workspace": "19.6.5",
"@release-it-plugins/workspaces": "4.2.0",
"@release-it/conventional-changelog": "8.0.1",
"@taiga-ui/browserslist-config": "0.157.1",
"@taiga-ui/commitlint-config": "0.157.1",
"@taiga-ui/eslint-plugin-experience": "0.157.1",
"@taiga-ui/prettier-config": "0.157.1",
"@taiga-ui/stylelint-config": "0.157.1",
"@taiga-ui/tsconfig": "0.157.1",
"@taiga-ui/browserslist-config": "0.158.0",
"@taiga-ui/commitlint-config": "0.158.0",
"@taiga-ui/eslint-plugin-experience": "0.158.0",
"@taiga-ui/prettier-config": "0.158.0",
"@taiga-ui/stylelint-config": "0.158.0",
"@taiga-ui/tsconfig": "0.158.0",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/node": "22.5.4",
Expand Down
4 changes: 2 additions & 2 deletions projects/ng-dompurify/lib/ng-dompurify.pipe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ export class NgDompurifyPipe implements PipeTransform {
switch (context) {
case SecurityContext.HTML:
return this.domSanitizer.bypassSecurityTrustHtml(purifiedValue);
case SecurityContext.RESOURCE_URL:
return this.domSanitizer.bypassSecurityTrustResourceUrl(purifiedValue);
case SecurityContext.STYLE:
return this.domSanitizer.bypassSecurityTrustStyle(purifiedValue);
case SecurityContext.URL:
return this.domSanitizer.bypassSecurityTrustUrl(purifiedValue);
case SecurityContext.RESOURCE_URL:
return this.domSanitizer.bypassSecurityTrustResourceUrl(purifiedValue);
default:
return null;
}
Expand Down

0 comments on commit 15ef069

Please sign in to comment.