File tree Expand file tree Collapse file tree 8 files changed +65
-37
lines changed
Expand file tree Collapse file tree 8 files changed +65
-37
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches : [main]
66 pull_request :
7- branches : ["**" ]
7+ branches : ['**' ]
88
99jobs :
1010 test :
@@ -23,14 +23,16 @@ jobs:
2323 run : pnpm run build
2424 - name : Run Linter
2525 run : pnpm run lint
26- - name : Run tests
27- run : |
28- pnpm dev &
29- pnpm run test
30- - uses : actions/upload-artifact@v4
31- if : ${{ !cancelled() }}
32- with :
33- name : genauigkeit-report
34- path : |
35- v2/pink-sb/.genauigkeit/report/index.html
36- retention-days : 30
26+ - name : Run Static Analysis
27+ run : pnpm run check
28+ # - name: Run tests
29+ # run: |
30+ # pnpm dev &
31+ # pnpm run test
32+ # - uses: actions/upload-artifact@v4
33+ # if: ${{ !cancelled() }}
34+ # with:
35+ # name: genauigkeit-report
36+ # path: |
37+ # v2/pink-sb/.genauigkeit/report/index.html
38+ # retention-days: 30
Original file line number Diff line number Diff line change 44 "version" : " 0.0.0" ,
55 "type" : " module" ,
66 "scripts" : {
7- "build" : " pnpm run -r build" ,
8- "dev" : " pnpm run -r --parallel --stream dev" ,
9- "test" : " pnpm run -r test" ,
10- "test:generate" : " pnpm run -r test:generate" ,
11- "format" : " pnpm run -r format" ,
12- "lint" : " pnpm run -r lint" ,
13- "check" : " pnpm run -r check" ,
7+ "build" : " wsu build" ,
8+ "dev" : " wsu dev" ,
9+ "test" : " wsu run test" ,
10+ "test:generate" : " wsu run test:generate" ,
11+ "format" : " wsu run format" ,
12+ "lint" : " wsu run lint" ,
13+ "check" : " wsu run check" ,
1414 "pre" : " " ,
1515 "bump" : " changeset" ,
1616 "bump-patch" : " " ,
2020 "release" : " npm run build && changeset publish"
2121 },
2222 "devDependencies" : {
23- "@changesets/cli" : " ^2.27.12"
23+ "@changesets/cli" : " ^2.27.12" ,
24+ "workspace-utils" : " ^1.0.2"
2425 },
2526 "engines" : {
2627 "node" : " >=20.0.0"
Original file line number Diff line number Diff line change 2020 buttonPadding =" --space-6" ><slot /></AccordionBase
2121 >
2222</div >
23-
24- <style lang =" scss" >
25- @use ' ./item' ;
26-
27- :global(.action-list-accordion button ) {
28- padding : 0 ;
29- display : block ;
30- @include item .base ;
31- }
32- :global(.action-list-accordion-divider button ),
33- :global(.action-list-accordion-divider .divider ) {
34- margin-bottom : var (--gap-xxxs );
35- }
36- </style >
Original file line number Diff line number Diff line change 491491 }
492492
493493 & [data-loading = ' true' ] {
494- display : inline- flex ;
494+ display : flex ;
495495 }
496496
497497 & [data-empty-cell = ' true' ] {
Original file line number Diff line number Diff line change 3333 name =" Image"
3434 args ={{ src : ' https://avatars.githubusercontent.com/u/1759475?v=4&size=128' }}
3535/>
36- <Story name =" Icon" >
36+ <Story name =" With Icon" >
3737 <Avatar >
3838 <Icon icon ={IconSvelte } size =" s" />
3939 </Avatar >
Original file line number Diff line number Diff line change 1010
1111<script >
1212 import { Story , Template } from ' @storybook/addon-svelte-csf' ;
13+ // @ts-expect-error weird json import warning
1314 import data from ' ./data.json' ;
1415 </script >
1516
Original file line number Diff line number Diff line change @@ -2,5 +2,12 @@ import { sveltekit } from '@sveltejs/kit/vite';
22import { defineConfig } from 'vite' ;
33
44export default defineConfig ( {
5- plugins : [ sveltekit ( ) ]
5+ plugins : [ sveltekit ( ) ] ,
6+ css : {
7+ preprocessorOptions : {
8+ scss : {
9+ api : 'modern'
10+ }
11+ }
12+ }
613} ) ;
You can’t perform that action at this time.
0 commit comments