1.0.2 • Published 7 years ago

x-scalpel v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
7 years ago

通过入口文件分析项目依赖,并可视化展现

检测项目中可能废弃的文件或者依赖

https://www.npmjs.com/package/x-scalpel

npm.io

var scalpel = require('x-scalpel');
var path = require('path');

var config = {
    nodeHaste:false, // node-haste 解析支持
    entry:path.resolve('./js/Go/Entry.js'),
    root: path.resolve('./js'),
    packageJson: path.resolve('./package.json'),
    fileFilter: /^\.|node_modules|.+\.md/,
    fileMatch: function(a,b){
        if (/\.png|\.jpg/.test(a)) {
            return a.replace('@2x','').replace('@3x','') == b;
        } else {
            return a == b;
        }
    }
}

scalpel(config);