We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f6a2ae commit 57bed77Copy full SHA for 57bed77
1 file changed
lib/loader/pluginLoader.js
@@ -269,6 +269,23 @@
269
return;
270
}
271
272
+ // Log custom plugin attributes.
273
+ // for(var plugin_key in plugin) {
274
+ // if (PLUGINS_FIELDS.indexOf(plugin_key) === -1
275
+ // && PLUGIN_METHODS.indexOf(plugin_key) === -1
276
+ // && ['provides',
277
+ // 'listed',
278
+ // 'tests',
279
+ // 're',
280
+ // 'notPlugin',
281
+ // 'highestPriority',
282
+ // 'lowestPriority',
283
+ // 'startIteration',
284
+ // 'finishIteration'].indexOf(plugin_key) === -1) {
285
+ // console.log('--- unknown plugin attr', getFileName(bits[bits.length - 1]), plugin_key)
286
+ // }
287
288
+
289
// Check post plugin.
290
// TODO: only prapereLink method abailable.
291
// TODO: exclude prapereLink method from other plugins.
0 commit comments