-
Notifications
You must be signed in to change notification settings - Fork 562
/
Copy pathpost-merge
executable file
·38 lines (32 loc) · 1.19 KB
/
post-merge
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env node
/* eslint-disable no-console */
const execa = require('execa');
const chalk = require('chalk');
const fs = require('fs');
execa
.shell('git diff-tree -r --name-only --no-commit-id HEAD@{1} HEAD')
.then(result => {
const changedFiles = result.stdout.split('\n');
if (changedFiles.includes('.nvmrc')) {
const nvmrcVersion = fs.readFileSync('.nvmrc').toString().trim();
console.log(
`${chalk.red(
`Frontend now requires Node ${nvmrcVersion}\nSwitch to the latest version using \`nvm use\`, \`fnm use\` or \`asdf install\` (or whatever is appropriate) or download from nodejs.org. Then run \`make reinstall\`.`,
)}`
);
} else if (changedFiles.includes('yarn.lock')) {
console.log(
`${chalk.red(
'This application has new dependencies. Running `make install`...'
)}`
);
return execa('make', ['install'], {
stdio: 'inherit',
});
}
return Promise.resolve();
})
.catch(e => {
console.log(`\n${e}\n`);
process.exit(1);
});