Skip to content

Commit

Permalink
fix(source-list): fix export
Browse files Browse the repository at this point in the history
  • Loading branch information
ThornWalli committed Dec 28, 2024
1 parent 397a8cd commit 2c2cd30
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function _testIsPrint(a, b) {
* @param {boolean} [configuration.unitlessMqAlwaysFirst]
* @returns {(function(string, string): number)|*}
*/
module.exports = function createSort(configuration) {
export default function createSort(configuration) {
const config = configuration || {};
const UNITLESS_MQ_ALWAYS_FIRST = config.unitlessMqAlwaysFirst;

Expand Down Expand Up @@ -312,4 +312,4 @@ module.exports = function createSort(configuration) {
};

return sortCSSmq;
};
}

0 comments on commit 2c2cd30

Please sign in to comment.