-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjavascript-dependency-provider.ts
33 lines (27 loc) · 1.14 KB
/
javascript-dependency-provider.ts
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
import path = require("path");
import fs = require("fs");
const dependencyTree = require("dependency-tree");
export class JavaScriptDepencencyProvider {
private visited = {};
private readonly config;
constructor() {
this.config = JavaScriptDepencencyProvider.loadConfig();
}
private static loadConfig(): any {
const configPath = process.cwd() + "/.module-structure.js";
const config = fs.existsSync(configPath) ? require(configPath) : require("../conf/defaultConfig");
return config["module-structure-lang-js"];
}
public getDependencies(modulePath: string, rootDir: string): Array<string> {
const tree = dependencyTree({directory: rootDir, filename: modulePath, visited: this.visited, webpackConfig: this.config.webpackConfig});
const key = Object.keys(tree)[0];
const imports = Object.keys(tree[key]);
const moduleDirectory = path.dirname(modulePath);
return imports.map(dependencyPath => {
return path.relative(moduleDirectory, dependencyPath);
});
}
}
module.exports = function() {
return new JavaScriptDepencencyProvider();
};