We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 908ed38 commit 54efc3aCopy full SHA for 54efc3a
index.js
@@ -140,9 +140,6 @@ module.exports = function (browserify, options) {
140
141
browserify.on('bundle', function(bundle) {
142
bundle.on('end', function() {
143
- // reset the `tokensByFile` cache
144
- tokensByFile = {};
145
-
146
// Combine the collected sources into a single CSS file
147
var css = Object.keys(sourceByFile).map(function(file) {
148
return sourceByFile[file];
@@ -163,6 +160,9 @@ module.exports = function (browserify, options) {
163
160
}
164
161
});
165
162
+
+ // reset the `tokensByFile` cache
+ tokensByFile = {};
166
167
168
0 commit comments