-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
159 lines (138 loc) · 4.41 KB
/
index.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
var precinct = require('precinct');
var path = require('path');
var q = require('q');
var dir = require('node-dir');
var gmt = require('module-definition');
var cabinet = require('filing-cabinet');
var debug = require('debug')('app-root');
/**
* Calls the given callback with a list of candidate root filenames
*
* @param {Object} options - Configuration options
* @param {String} options.directory - Where to look for roots
* @param {Function} options.success - Executed with the list of roots
*
* @param {String} [options.config] - Module loader configuration for aliased path resolution
* @param {String} [options.webpackConfig] - Module loader configuration for aliased path resolution
*
* @param {String[]} [options.ignoreDirectories] - List of directory names to ignore in the root search
* @param {String[]} [options.ignoreFiles] - List of filenames to ignore in the root search
* @param {Boolean} [options.includeNoDependencyModules=false] - Whether or not to include modules with no dependencies
*/
module.exports = function(options) {
options = options || {};
if (!options.directory) { throw new Error('directory not given'); }
if (!options.success) { throw new Error('success callback not given'); }
options.directory = path.resolve(options.directory);
options.includeNoDependencyModules = !!options.includeNoDependencyModules;
debug('given directory' + options.directory);
debug('include no dep modules? ' + options.includeNoDependencyModules);
getAllFiles(options)
.then(function(files) {
debug('grabbed ' + files.length + ' files to sift through');
var actualModules = files.map(function(file) {
return fileObj = {
path: file,
type: path.extname(file) === '.js' ? gmt.sync(file) : ''
};
})
.filter(function(fileObj) {
return fileObj.type !== 'none';
});
debug('number of actual modules to process: ' + actualModules.length);
return actualModules;
})
.then(function(files) {
return getFilesNotDependedOn(files, options);
})
.done(function(files) {
options.success(files);
});
};
/**
* Returns a list of all filepaths relative to the given directory
*
* @param {Object} options
* @param {String} options.directory
* @param {String[]} [options.ignoreDirectories=null]
* @param {String[]} [options.ignoreFiles=null]
* @return {Promise}
*/
function getAllFiles(options) {
var deferred = q.defer();
dir.readFiles(options.directory, {
exclude: options.ignoreFiles || null,
excludeDir: options.ignoreDirectories || null
},
function(err, content, next) {
if (err) {
deferred.reject(err);
return;
}
next();
},
function(err, files) {
if (err) {
deferred.reject(err);
return;
}
deferred.resolve(files);
});
return deferred.promise;
}
/**
* @param {Object[]} files
* @param {Object} options
* @param {Boolean} options.includeNoDependencyModules
* @param {String} options.directory
* @return {Promise} Resolves with the list of independent filenames
*/
function getFilesNotDependedOn(files, options) {
// A look up table of all files used as dependencies within the directory
var dependencies = {};
files.forEach(function(file) {
var deps;
// If a file cannot be parsed, it shouldn't be considered a root
try {
deps = getNonCoreDependencies(file.path);
debug('deps for ' + file.path + ':\n', deps);
} catch (e) {
dependencies[file.path] = true;
return;
}
if (!options.includeNoDependencyModules && !deps.length) {
// Files with no dependencies are useless and should not be roots
// so we add them to the list so they're no longer root candidates
dependencies[file.path] = true;
return;
}
deps.forEach(function(dep) {
dep = cabinet({
partial: dep,
filename: file.path,
directory: options.directory,
config: options.config,
webpackConfig: options.webpackConfig
});
dependencies[dep] = true;
});
});
debug('used dependencies: \n', dependencies);
return files.filter(function(file) {
return typeof dependencies[file.path] === 'undefined';
})
.map(function(file) {
return file.path;
});
}
/**
* Get a list of non-core dependencies for the given file
*
* @param {String} file
* @return {String[]}
*/
function getNonCoreDependencies(file) {
return precinct.paperwork(file, {
includeCore: false
});
}