-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.js
60 lines (47 loc) · 1.25 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
'use strict';
const Walker = require('node-source-walk');
/**
* Extracts the dependencies of the supplied es6 module
*
* @param {String|Object} src - File's content or AST
* @param {Object} options - optional extra settings
* @return {String[]}
*/
module.exports = function(src, options = {}) {
if (src === undefined) throw new Error('src not given');
if (src === '') return [];
const walker = new Walker();
const dependencies = [];
walker.walk(src, node => {
switch (node.type) {
case 'ImportDeclaration': {
if (options.skipTypeImports && node.importKind === 'type') {
break;
}
if (node.source?.value) {
dependencies.push(node.source.value);
}
break;
}
case 'ExportNamedDeclaration':
case 'ExportAllDeclaration': {
if (node.source?.value) {
dependencies.push(node.source.value);
}
break;
}
case 'CallExpression': {
if (options.skipAsyncImports) {
break;
}
if (node.callee.type === 'Import' && node.arguments?.[0].value) {
dependencies.push(node.arguments?.[0].value);
}
break;
}
default:
// nothing
}
});
return dependencies;
};