/
githubmirror
/
atom
Обзор
Документация
Войти
/
githubmirror
/
atom
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.52.0
script/lib/install-apm.js
15 строк
394 B
Winston Liu
Revert "Install apm using ci"
14 июн 2019, 05:26
Не верифицирован
14 июн 2019, 05:26
86ad1c6
Код
Авторство
О чём код?
'use strict'; const childProcess = require('child_process'); const CONFIG = require('../config'); module.exports = function(ci) { console.log('Installing apm'); // npm ci leaves apm with a bunch of unmet dependencies childProcess.execFileSync( CONFIG.getNpmBinPath(), ['--global-style', '--loglevel=error', 'install'], { env: process.env, cwd: CONFIG.apmRootPath } ); };