Skip to content

Commit

Permalink
Merge pull request #17515 from ckeditor/ci/3881
Browse files Browse the repository at this point in the history
Internal: Search for package dependencies in snippet adapter only in known directories where package can exist.
  • Loading branch information
psmyrek authored Nov 22, 2024
2 parents 9db0079 + 49c790a commit 5da8020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/docs/snippetadapter.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ function getPackageDependenciesPaths() {
absolute: true
};

return globSync( [ 'packages/*/node_modules', 'external/*/packages/*/node_modules' ], globOptions )
return globSync( [ 'packages/*/node_modules', 'external/ckeditor5-commercial/packages/*/node_modules' ], globOptions )
.map( p => upath.normalize( p ) );
}

Expand Down

0 comments on commit 5da8020

Please sign in to comment.