mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-26 10:26:15 -04:00
checkPlugin: Move log messages where they make more sense
This commit is contained in:
parent
d816bb2b38
commit
102c01f723
1 changed files with 2 additions and 2 deletions
|
@ -433,9 +433,9 @@ fs.readdir(pluginPath, (err, rootFiles) => {
|
|||
|
||||
// linting begins
|
||||
try {
|
||||
console.log('Linting...');
|
||||
const lintCmd = autoFix ? 'npx eslint --fix .' : 'npx eslint';
|
||||
execSync(lintCmd);
|
||||
console.log('Linting...');
|
||||
if (autoFix) {
|
||||
// todo: if npm run lint doesn't do anything no need for...
|
||||
hasAutoFixed = true;
|
||||
|
@ -447,7 +447,6 @@ fs.readdir(pluginPath, (err, rootFiles) => {
|
|||
// linting ends.
|
||||
|
||||
if (hasAutoFixed) {
|
||||
console.log('Fixes applied, please check git diff then run the following command:\n\n');
|
||||
// bump npm Version
|
||||
const cmd = [
|
||||
'git rm -rf node_modules --ignore-unmatch',
|
||||
|
@ -460,6 +459,7 @@ fs.readdir(pluginPath, (err, rootFiles) => {
|
|||
console.log('Attempting autocommit and auto publish to npm');
|
||||
execSync(cmd);
|
||||
} else {
|
||||
console.log('Fixes applied, please check git diff then run the following command:');
|
||||
console.log(`(cd node_modules/${pluginName} && ${cmd})`);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue