mirror of
https://github.com/atom/atom.git
synced 2026-01-25 06:48:28 -05:00
8 lines
245 B
JavaScript
8 lines
245 B
JavaScript
var fingerprint = require('../../script/utils/fingerprint')
|
|
|
|
module.exports = function (grunt) {
|
|
grunt.registerTask('fingerprint', 'Fingerpint the node_modules folder for caching on CI', function () {
|
|
fingerprint.writeFingerprint()
|
|
})
|
|
}
|