mirror of
https://github.com/steel-dev/cli.git
synced 2026-09-14 20:47:34 +08:00
10 lines
199 B
TypeScript
10 lines
199 B
TypeScript
import crypto from 'crypto';
|
|
import fs from 'fs';
|
|
export function hashDeps(depsFile) {
|
|
return crypto
|
|
.createHash('sha256')
|
|
.update(fs.readFileSync(depsFile))
|
|
.digest('hex')
|
|
.slice(0, 12);
|
|
}
|