feat(guide): Import guide in to the client app

This commit is contained in:
Bouncey
2018-10-04 14:47:55 +01:00
committed by Stuart Taylor
parent 2723a943c9
commit 6e728ce16d
4338 changed files with 148283 additions and 4200 deletions

View File

@ -15,7 +15,12 @@ const loopback = spawn(
);
const gatsby = spawn('cd', ['./client', '&&', 'npm run develop'], spawnOpts);
let cleanupCalled = false;
function cleanUp() {
if (cleanupCalled) {
return null;
}
cleanupCalled = true;
console.log(`
Killing processes...
`);