-
Notifications
You must be signed in to change notification settings - Fork 688
/
Copy pathmonorepo-introduction.js
115 lines (103 loc) · 3.6 KB
/
monorepo-introduction.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
const path = require('path');
const chalk = require('chalk');
const execa = require('execa');
const firstRun = require('first-run');
const root = path.resolve(__dirname, '..');
async function prepare() {
if (firstRun()) {
console.warn(
chalk.green(
'You may see a number of warnings above about unmet peer dependencies. There is nothing wrong; this is an issue with peerDependencies and Yarn monorepos.'
)
);
console.warn(
chalk.green('The issue is being tracked at ') +
chalk.reset.underline.bold(
'https://github.com/yarnpkg/yarn/issues/5810'
) +
chalk.green(
' and this notice will be removed when an upgrade to Yarn fixes this bug.'
)
);
}
const packages = JSON.parse(
(await execa('yarn', ['--silent', 'workspaces', 'info'], { cwd: root }))
.stdout
);
const packagePath = name => path.resolve(root, packages[name].location);
const buildpackCli = path.resolve(
packagePath('@magento/pwa-buildpack'),
'bin',
'buildpack'
);
console.warn(chalk.green('Preparing packages...'));
/**
* `yarn workspaces run X` really should run only in workspaces with the
* script 'X' defined, but it doesn't, so it fails unless every package has
* an 'X' script. So we have to read each package.json before trying.
*/
await Promise.all(
Object.entries(packages).map(async ([name, { location }]) => {
const pkg = require(`../${location}/package.json`);
if (pkg.scripts && pkg.scripts.prepare) {
await execa('yarn', ['workspace', name, 'run', 'prepare'], {
cwd: root,
stdio: ['inherit', 'ignore', 'inherit']
});
}
})
);
const veniaPath = packagePath('@magento/venia-concept');
console.warn(chalk.green('Ensuring valid environment...'));
try {
await execa(buildpackCli, ['load-env', '--core-dev-mode', veniaPath], {
cwd: root
});
} catch (e) {
if (e.stderr) {
console.error(chalk.bold.red(e.stderr));
process.exit(1);
}
}
// Prep Venia custom origin
try {
const {
configureHost,
loadEnvironment
} = require('../packages/pwa-buildpack/lib/Utilities');
// loadEnvironment has already run, so let's not let it yell again
const nullLogger = new Proxy(console, {
get() {
return () => {};
}
});
const customOrigin = await loadEnvironment(
veniaPath,
nullLogger
).section('customOrigin');
if (customOrigin.enabled) {
const customOriginConfig = await configureHost(
Object.assign(customOrigin, {
dir: veniaPath,
interactive: false
})
);
if (!customOriginConfig) {
console.warn(
chalk.green(
'Set up a custom origin for your copy of venia-concept:\n\t'
) +
chalk.whiteBright(
`yarn buildpack create-custom-origin ${veniaPath}`
)
);
}
}
} catch (e) {
// environment is not even set up
}
}
prepare().catch(e => {
console.error(chalk.bold.red('Unexpected error setting up workspace!'), e);
process.exit(1);
});