refactor(generic): add debug calls to the linter
This commit is contained in:
Родитель
23449956f0
Коммит
3e11610923
|
@ -1,4 +1,5 @@
|
|||
import 'colors';
|
||||
import debug from 'debug';
|
||||
import fs from 'fs-promise';
|
||||
import path from 'path';
|
||||
import program from 'commander';
|
||||
|
@ -8,8 +9,10 @@ import { spawn as yarnOrNPMSpawn } from 'yarn-or-npm';
|
|||
import './util/terminate';
|
||||
import resolveDir from './util/resolve-dir';
|
||||
|
||||
const d = debug('electron-forge:lint');
|
||||
|
||||
const main = async () => {
|
||||
const lintSpinner = ora('Linting Application').start();
|
||||
const lintSpinner = ora.ora('Linting Application').start();
|
||||
let dir = process.cwd();
|
||||
program
|
||||
.version(require('../package.json').version)
|
||||
|
@ -32,6 +35,7 @@ const main = async () => {
|
|||
process.exit(1);
|
||||
}
|
||||
|
||||
d('executing "run lint -- --color" in dir:', dir);
|
||||
const child = yarnOrNPMSpawn(['run', 'lint', '--', '--color'], {
|
||||
cwd: dir,
|
||||
});
|
||||
|
@ -39,10 +43,12 @@ const main = async () => {
|
|||
child.stdout.on('data', data => output.push(data.toString()));
|
||||
child.stderr.on('data', data => output.push(data.toString().red));
|
||||
child.on('exit', (code) => {
|
||||
if (code !== 0) lintSpinner.fail();
|
||||
if (code === 0) lintSpinner.succeed();
|
||||
if (code !== 0) {
|
||||
lintSpinner.fail();
|
||||
output.forEach(data => process.stdout.write(data));
|
||||
if (code !== 0) process.exit(code);
|
||||
process.exit(code);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ export default async (dir) => {
|
|||
while (prevDir !== mDir) {
|
||||
prevDir = mDir;
|
||||
const testPath = path.resolve(mDir, 'package.json');
|
||||
d('searching for project in', testPath);
|
||||
d('searching for project in:', mDir);
|
||||
if (await fs.exists(testPath)) {
|
||||
const packageJSON = JSON.parse(await fs.readFile(testPath, 'utf8'));
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче