-
-
Notifications
You must be signed in to change notification settings - Fork 334
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Build] Can't exclude Table component if Tab is included #2118
Labels
type/bug
Any issue which is a bug or PR which fixes a bug
type/build
Anything related to the build process
Milestone
Comments
hugopeek
added a commit
to hugopeek/Fomantic-UI
that referenced
this issue
Sep 23, 2021
If there is still a table.css present in dist/components, it will be included in semantic.css. This is caused by a collision in the globbing mechanism: 'tab' is included in the word 'table', so table.css is included in the package task. Fixes fomantic#2118
lubber-de
pushed a commit
that referenced
this issue
Sep 24, 2021
If there is still a table.css present in dist/components, it will be included in semantic.css. This is caused by a collision in the globbing mechanism: 'tab' is included in the word 'table', so table.css is included in the package task. Fixes #2118
This was referenced Aug 10, 2024
This was referenced Aug 19, 2024
This was referenced Aug 30, 2024
This was referenced Sep 23, 2024
This was referenced Nov 4, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
type/bug
Any issue which is a bug or PR which fixes a bug
type/build
Anything related to the build process
Bug Report
I want to exclude the Table component from semantic.css, to reduce file size. It's still listed as an individual in semantic.json.
This leads to a funky glitch, where the CSS styles for Table are not removed from semantic.css if the Tab component is also included and if table.css is still present under dist/components. Probably a globbing issue in one of the Gulp tasks.
Steps to reproduce
Expected result
All table classes should be removed from semantic.css if 'table' is not in the list of components.
Actual result
No reduction in file size for semantic.css. All .ui.table classes are still there.
Version
2.8.8
The text was updated successfully, but these errors were encountered: