/
githubmirror
/
angular.js
Обзор
Документация
Войти
/
githubmirror
/
angular.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/config/services/getMinerrInfo.js
15 строк
397 B
Michał Gołębiowski
chore(eslint): enable `quotes: ["error", "single"]`
10 авг 2016, 22:52
10 авг 2016, 22:52
9360aa2
Код
Авторство
О чём код?
'use strict'; var path = require('canonical-path'); /** * @dgService minErrInfo * @description * Load the error information that was generated during the AngularJS build. */ module.exports = function getMinerrInfo(readFilesProcessor) { return function() { var minerrInfoPath = path.resolve(readFilesProcessor.basePath, 'build/errors.json'); return require(minerrInfoPath); }; };