File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ template: |
88 See details of [all code changes](https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION) since previous release
99
1010categories :
11+ - title : ' 💥 Breaking Changes'
12+ labels :
13+ - ' breaking'
1114 - title : ' 🚀 Features'
1215 labels :
1316 - ' feature'
Original file line number Diff line number Diff line change @@ -15,29 +15,18 @@ permissions:
1515jobs :
1616 release :
1717 permissions :
18- contents : write
19- pull-requests : read
20- uses : github-community-projects/ospo-reusable-workflows/.github/workflows/release.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
18+ contents : write # Create release and push tags
19+ pull-requests : read # Read PR labels for release-drafter
20+ packages : write # Push container image to ghcr.io
21+ id-token : write # Federate for artifact attestation
22+ attestations : write # Generate build provenance attestations
23+ discussions : write # Create release announcement discussion
24+ uses : github-community-projects/ospo-reusable-workflows/.github/workflows/release.yaml@e92cb6053ace495fe40a5f185988557afcdcecbc # v1.0.1
2125 with :
2226 publish : true
2327 release-config-name : release-drafter.yml
24- secrets :
25- github-token : ${{ secrets.GITHUB_TOKEN }}
26- release_image :
27- needs : release
28- permissions :
29- contents : read
30- packages : write
31- id-token : write
32- attestations : write
33- uses : github-community-projects/ospo-reusable-workflows/.github/workflows/release-image.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
34- with :
3528 image-name : ${{ github.repository }}
36- full-tag : ${{ needs.release.outputs.full-tag }}
37- short-tag : ${{ needs.release.outputs.short-tag }}
3829 create-attestation : true
3930 secrets :
4031 github-token : ${{ secrets.GITHUB_TOKEN }}
41- image-registry : ghcr.io
42- image-registry-username : ${{ github.actor }}
4332 image-registry-password : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 7171 "prettier" : " 3.5.3" ,
7272 "typescript" : " 5.8.3" ,
7373 "typescript-eslint" : " 8.54.0" ,
74- "vite-tsconfig-paths" : " 6.1.1" ,
7574 "vitest" : " 4.1.5"
7675 },
7776 "engines" : {
Original file line number Diff line number Diff line change 11import { defineConfig } from 'vitest/config'
2- import tsconfigPaths from 'vite-tsconfig-paths'
32
43export default defineConfig ( {
5- plugins : [ tsconfigPaths ( ) ] ,
64 test : {
75 environment : 'node' ,
86 include : [
@@ -35,4 +33,7 @@ export default defineConfig({
3533 tsconfig : './tsconfig.json' ,
3634 } ,
3735 } ,
36+ resolve : {
37+ tsconfigPaths : true ,
38+ } ,
3839} )
You can’t perform that action at this time.
0 commit comments