For a while I have been using the @import to create the following SCSS folder structure. to import the 3 partials into _utilities-dir.scss etc... By adding the partials into the _utilities-dir.scss for example.
utilities
_utilities-dir.scss
_functions.scss
_mixins.scss
_variables.scss
base
__base-dir.scss
_reset.scss
_typography.scss
I then used to use the @import method to create the main.scss file
@import "/utilities/utilities-dir",
@import "/utilities/base-dir",
How can I create the same output using the new @use method?