/
githubmirror
/
gulp
Обзор
Документация
Войти
/
githubmirror
/
gulp
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v3.8.4
lib/completion.js
22 строки
484 B
Contra
new linting setup
03 июн 2014, 08:41
03 июн 2014, 08:41
9e1f93c
Код
Авторство
О чём код?
'use strict'; var fs = require('fs'); var path = require('path'); module.exports = function (name) { if (typeof name !== 'string') { throw new Error('Missing completion type'); } var file = path.join(__dirname, '../completion', name); try { console.log(fs.readFileSync(file, 'utf8')); process.exit(0); } catch (err) { console.log( 'echo "gulp autocompletion rules for', '\'' + name + '\'', 'not found"' ); process.exit(5); } };