Skip to content

Commit 86736a9

Browse files
authored
Merge pull request #3 from nealgranger/load-order
Process default export last.
2 parents 5b523da + f667129 commit 86736a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,13 +121,13 @@ module.exports = function(content) {
121121
// };
122122
// ```
123123
return format(config, [
124-
styles.default,
125124
mapKeys(
126125
omit(styles, 'default'),
127126
function (value, key) {
128127
return '.' + key;
129128
}
130129
),
130+
styles.default,
131131
]);
132132
}
133133

0 commit comments

Comments
 (0)