graphql-engine/console/scripts/preCommit.js
2020-05-29 16:45:43 +05:30

8 lines
187 B
JavaScript

require('dotenv').config();
const execSync = require('child_process').execSync;
if (process.env.HUSKY_PRE_COMMIT) {
execSync('node_modules/.bin/lint-staged', { stdio: 'inherit' });
}