You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
fix(build): properly filter core module files with updated gulp-filter (#9399)
* After an update to the new `gulp-filter` major version (without any changelog)
it seems that `gulp-filter` can no longer match files (which aren't at the root level)
This new behavior makes completely sense, and the old one was not valid.
> Previous Version: `*.css` matches `src/core/core.css | src/core/core-default-theme.css`
> New Version: `*.css` matches no files, because at the project root are no CSS files.
* Now using multi level globs to match the core module files properly, because those are not at the root level (`src/core/`).
0 commit comments