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 3b6520d commit 9204163Copy full SHA for 9204163
1 file changed
tasks/util/common.js
@@ -88,7 +88,18 @@ exports.findModuleList = function(pathToIndex) {
88
node.parent.parent.type === 'ArrayExpression'
89
) {
90
var moduleName = node.value.replace('./', '');
91
- moduleList.push(moduleName);
+ if([
92
+ // transforms
93
+ 'aggregate',
94
+ 'filter',
95
+ 'groupby',
96
+ 'sort',
97
+
98
+ // components
99
+ 'calendars'
100
+ ].indexOf(moduleName) === -1) {
101
+ moduleList.push(moduleName);
102
+ }
103
}
104
});
105
0 commit comments