UNPKG
@toolsjs-cli/build-analyzer
Version:
latest (1.0.1)
1.0.1
1.0.0
构建分析工具,支持增量构建分析、大小分析等功能
github.com/yourusername/tools-cli
yourusername/tools-cli
@toolsjs-cli/build-analyzer
/
dist
/
services
/
diffAnalyzer.d.ts
9 lines
(8 loc)
•
217 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import { FileInfo } from
'../types'
; export declare
class
DiffAnalyzer
{ analyze(current: FileInfo[],
last
: FileInfo[]): { add: FileInfo[]; update: FileInfo[]; remove: FileInfo[]; }; }