File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
packages/angular-mcp-server/src/lib/tools/ds/component Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,10 @@ export const listDsComponentsHandler = createHandler<
172172
173173 const documentationFiles : string [ ] = [ ] ;
174174 if ( includeDocumentation && storybookDocsRoot ) {
175- const docsBasePath = resolveCrossPlatformPath ( cwd , storybookDocsRoot ) ;
175+ const docsBasePath = resolveCrossPlatformPath (
176+ cwd ,
177+ storybookDocsRoot ,
178+ ) ;
176179 const docPaths = getComponentDocPathsForName (
177180 docsBasePath ,
178181 componentName ,
@@ -188,7 +191,10 @@ export const listDsComponentsHandler = createHandler<
188191
189192 let storiesFilePaths : string [ ] = [ ] ;
190193 if ( includeStories && storybookDocsRoot ) {
191- const docsBasePath = resolveCrossPlatformPath ( cwd , storybookDocsRoot ) ;
194+ const docsBasePath = resolveCrossPlatformPath (
195+ cwd ,
196+ storybookDocsRoot ,
197+ ) ;
192198 const storiesComponentFolderPath = path . join (
193199 docsBasePath ,
194200 folderName ,
You can’t perform that action at this time.
0 commit comments