This commit is contained in:
syuilo
2021-11-12 11:03:28 +09:00
parent f6e7f389d6
commit e5acd1afb9

9
scripts/lint.js Normal file
View File

@ -0,0 +1,9 @@
const execa = require('execa');
(async () => {
await execa('npm', ['run', 'lint'], {
cwd: __dirname + '/../packages/backend',
stdout: process.stdout,
stderr: process.stderr,
});
})();