-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathplugins.js
43 lines (40 loc) · 1.78 KB
/
plugins.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
* peer dependencies can define js-builder "plugins" by defining
* a @jenkins-cd/js-builder.js file.
*/
var paths = require('./paths');
var path = require('path');
var cwd = process.cwd();
var fs = require('fs');
var dependencies = require('./dependecies');
var logger = require('./logger');
exports.install = function(builder) {
// Iterate over all of the installed node_modules. If a given dependency
// is listed as a dependency of "this" package, then lets see if it has
// a @jenkins-cd/js-builder.js file.
paths.walkDirs(cwd + '/node_modules', function(dir) {
var packageJsonFile = path.resolve(dir, 'package.json');
if (fs.existsSync(packageJsonFile)) {
try {
var packageJson = require(packageJsonFile);
if (dependencies.getDependency(packageJson.name)) {
var pluginFile = path.resolve(dir, '@jenkins-cd/js-builder.js');
if (fs.existsSync(pluginFile)) {
logger.logInfo('Running Jenkins js-builder plugin: ' + packageJson.name);
var plugin = require(pluginFile);
// The plugin impl can execute it's init code at the
// top level, or within an install function. Having an
// install function can simplify test implementation
// for the plugin by giving it some control over its
// lifecycle.
if (typeof plugin.install === 'function') {
plugin.install(builder);
}
}
}
} finally {
return false; // Don't recurse down inside the top level NPM packages.
}
}
});
};