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
Is your feature request related to a problem? Please describe.
It's not always desirable to go through the entire build process, for example, I may stop it early if I only want to see the Babel outputs. However, if I stop the build process early, I'll still have a huge number of EUI aliases in my files, which I don't want to push to my remote.
Describe the solution you'd like
It would be nice if the yarn clean script would also remove build-time EUI aliases. The code to do this is in the compile-oui.js file:
Is your feature request related to a problem? Please describe.
It's not always desirable to go through the entire build process, for example, I may stop it early if I only want to see the Babel outputs. However, if I stop the build process early, I'll still have a huge number of EUI aliases in my files, which I don't want to push to my remote.
Describe the solution you'd like
It would be nice if the
yarn clean
script would also remove build-time EUI aliases. The code to do this is in thecompile-oui.js
file:oui/scripts/compile-oui.js
Lines 160 to 175 in a1b9029
Ideally, this is extracted into a
utils.js
file, and both thecompile-oui.js
file andcompile-clean.js
utilize.Describe alternatives you've considered
Not doing this, but then I have to wait through the entire build process to get the aliases removed.
Additional context
N/a
The text was updated successfully, but these errors were encountered: