mirror of
https://github.com/strapi/strapi.git
synced 2025-07-04 07:27:23 +00:00
36 lines
1.3 KiB
JavaScript
36 lines
1.3 KiB
JavaScript
const path = require('path');
|
|
const shell = require('shelljs');
|
|
const chalk = require('chalk');
|
|
const eslintErrorsFormatter = require('./eslintErrorsFormatter');
|
|
|
|
const frontCmd =
|
|
'node ../../node_modules/strapi-lint/node_modules/.bin/eslint --ignore-path .gitignore --ignore-pattern \'/admin/build/\' --config ../../node_modules/strapi-lint/lib/internals/eslint/front/.eslintrc.json admin';
|
|
const backCmd =
|
|
'node ../../node_modules/strapi-lint/node_modules/.bin/eslint --ignore-path .gitignore --ignore-pattern \'/admin\' --config ../../node_modules/strapi-lint/lib/internals/eslint/back/.eslintrc.json controllers config services bin lib';
|
|
|
|
|
|
const watcher = (label, pckgName, type = 'front') => {
|
|
shell.echo(label);
|
|
shell.cd(`packages/${pckgName}`);
|
|
|
|
const data = shell.exec(`${frontCmd} && ${backCmd}`, { silent: true });
|
|
shell.echo(chalk(eslintErrorsFormatter(data.stdout)));
|
|
shell.cd('../..');
|
|
|
|
if (data.code !== 0) {
|
|
process.exit(1);
|
|
}
|
|
|
|
shell.echo(`Lint tests passed in ${pckgName}`);
|
|
};
|
|
|
|
const packagesPath = path.resolve(process.env.PWD, 'packages');
|
|
shell.ls('* -d', packagesPath)
|
|
// TODO temporary just for eslint
|
|
.filter(package => package === 'strapi-generate')
|
|
// .filter(package => package !== 'README.md')
|
|
.forEach(package => {
|
|
watcher(`Testing ${package}`, package);
|
|
});
|
|
// process.exit(1);
|