forked from OpenZeppelin/docs.openzeppelin.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild-local.js
34 lines (26 loc) · 862 Bytes
/
build-local.js
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
#!/usr/bin/env node
const path = require('path');
const fs = require('fs');
const proc = require('child_process');
proc.execFileSync('npm', ['install', '--no-package-lock', '--no-audit'], {
cwd: __dirname,
stdio: 'inherit',
});
const yaml = require('js-yaml');
const findUp = require('find-up');
const playbook = yaml.safeLoad(fs.readFileSync(path.join(__dirname, 'playbook.yml')));
const gitDir = path.dirname(findUp.sync('.git', { type: 'directory' }));
playbook.content.sources = [{
url: __dirname,
branches: 'HEAD',
}, {
url: gitDir,
branches: 'HEAD',
start_path: path.relative(gitDir, '.'),
}];
const localPlaybookFile = path.resolve(__dirname, 'local-playbook.yml');
fs.writeFileSync(localPlaybookFile, yaml.safeDump(playbook));
proc.execFileSync('bash', ['./build.sh', localPlaybookFile], {
cwd: __dirname,
stdio: 'inherit',
});