-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathyarn-workspaces.js
274 lines (212 loc) · 6.53 KB
/
yarn-workspaces.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
'use strict';
const fse = require('fs-extra');
const path = require('path');
const findUp = require('find-up');
const glob = require('glob');
const loadPackageJson = packagePath => {
try {
const packageObj = fse.readJsonSync(packagePath);
return packageObj;
} catch (err) {
throw err;
}
};
const getWorkspacesRootConfig = dir => {
const packageJsonUp = findUp.sync('package.json', { cwd: dir });
if (packageJsonUp === null) {
return false;
}
const packageObj = loadPackageJson(packageJsonUp);
if (
packageObj.workspaces &&
(Array.isArray(packageObj.workspaces) ||
Reflect.has(packageObj.workspaces, 'packages'))
) {
const workspacesRootConfig = {
root: path.dirname(packageJsonUp),
workspaces: packageObj.workspaces,
};
return workspacesRootConfig;
}
const dirUp = path.dirname(dir);
return getWorkspacesRootConfig(dirUp);
};
const getPackagePaths = (root, workspacesList) => {
const packageList = [];
workspacesList.forEach(workspace => {
const workspaceDir = path.dirname(workspace);
const workspaceAbsDir = path.join(root, workspaceDir);
const packageJsonGlob = path.join('**!(node_modules)', 'package.json');
const packageJsonAbsPaths = glob
.sync(packageJsonGlob, { cwd: workspaceAbsDir })
.map(pkgPath => path.join(workspaceAbsDir, pkgPath));
packageList.push(...packageJsonAbsPaths);
});
return packageList;
};
const getDeep = (obj, keyChain) => {
const nextKey = keyChain.shift();
const has = Reflect.has(obj, nextKey);
const val = obj[nextKey];
if (keyChain.length === 0) {
return val;
}
if (has) {
return getDeep(val, keyChain);
}
return false;
};
const resolveBabelLoaderPaths = ({ root, workspacesList }, packageEntry) => {
const packageJsonPaths = getPackagePaths(root, workspacesList);
const babelLoaderPaths = [];
packageJsonPaths.map(absPkgPath => {
const packageJson = loadPackageJson(absPkgPath);
const mainSrcFile = getDeep(packageJson, [packageEntry]);
if (mainSrcFile) {
const mainSrcPath = path.dirname(mainSrcFile);
const packageAbsDir = path.dirname(absPkgPath);
const absSrcPath = path.join(packageAbsDir, mainSrcPath);
babelLoaderPaths.push(absSrcPath);
}
});
return babelLoaderPaths;
};
const loadAppSettings = appPackageJson => {
const result = { workspaces: {}, dependencies: {} };
const appPackageObj = loadPackageJson(appPackageJson);
const dependencies = getDeep(appPackageObj, ['dependencies']);
const devDependencies = getDeep(appPackageObj, ['devDependencies']);
if (!dependencies && !devDependencies) {
return result;
}
if (dependencies) {
result.dependencies = Object.assign(result.dependencies, dependencies);
}
if (devDependencies) {
result.dependencies = Object.assign(result.dependencies, devDependencies);
}
const reactScripts = getDeep(appPackageObj, ['react-scripts']);
if (!reactScripts) {
return result;
}
const workspaces = getDeep(reactScripts, ['workspaces']);
result.workspaces = workspaces;
if (!workspaces) {
return result;
}
return workspaces;
};
const guard = (appDirectory, appPackageJson) => {
if (!appDirectory) {
throw new Error('appDirectory not provided');
}
if (typeof appDirectory !== 'string') {
throw new Error('appDirectory should be a string');
}
if (!appPackageJson) {
throw new Error('appPackageJson not provided');
}
if (typeof appPackageJson !== 'string') {
throw new Error('appPackageJson should be a string');
}
};
const getPkg = path => {
const pkgPath = findUp.sync('package.json', { cwd: path });
const pkg = loadPackageJson(pkgPath);
return pkg;
};
const getDeps = pkg => {
const deps = getDeep(pkg, ['dependencies']);
const devDeps = getDeep(pkg, ['devDependencies']);
let dependencies = {};
if (deps) {
dependencies = Object.assign(dependencies, deps);
}
if (devDeps) {
dependencies = Object.assign(dependencies, devDeps);
}
return dependencies;
};
const depsTable = {};
const buildDepsTable = srcPaths => {
srcPaths.forEach(path => {
const pkg = getPkg(path);
const name = pkg.name;
const deps = getDeps(pkg);
depsTable[name] = { path, deps };
});
};
const filterSrcPaths = (srcPaths, dependencies) => {
const filteredPaths = [];
srcPaths.forEach(path => {
const pkg = getPkg(path);
if (dependencies && Reflect.has(dependencies, pkg.name)) {
filteredPaths.push(path);
const subDeps = depsTable[pkg.name].deps;
const subPaths = filterSrcPaths(srcPaths, subDeps);
filteredPaths.push(...subPaths);
}
});
return filteredPaths;
};
const init = paths => {
guard(paths.appPath, paths.appPackageJson);
const config = {
root: null,
paths: [],
packageEntry: 'main:src',
development: true,
production: true,
};
const { root, workspaces } = getWorkspacesRootConfig(paths.appPath);
const workspacesList = [];
// Normally "workspaces" in package.json is an array
if (Array.isArray(workspaces)) {
workspacesList.push(...workspaces);
}
// Sometimes "workspaces" in package.json is an object
// with a ".packages" sub-array, eg: when used with "nohoist"
// See: https://yarnpkg.com/blog/2018/02/15/nohoist
if (
workspaces &&
!Array.isArray(workspaces) &&
Reflect.has(workspaces, 'packages')
) {
workspacesList.push(...workspaces.packages);
}
if (workspacesList.length === 0) {
return config;
}
console.log('Yarn Workspaces paths detected.');
config.root = root;
const appSettings = loadAppSettings(paths.appPackageJson);
if (Reflect.has(appSettings.workspaces, 'development')) {
config.development = appSettings.workspaces.development ? true : false;
}
if (Reflect.has(appSettings.workspaces, 'production')) {
config.production = appSettings.workspaces.production ? true : false;
}
if (Reflect.has(appSettings.workspaces, 'package-entry')) {
config.packageEntry = appSettings.workspaces['package-entry'];
}
const babelSrcPaths = resolveBabelLoaderPaths(
{ root, workspacesList },
config.packageEntry
);
buildDepsTable(babelSrcPaths);
const applicableSrcPaths = [
...new Set(filterSrcPaths(babelSrcPaths, appSettings.dependencies)),
];
console.log(
`Found ${babelSrcPaths.length} path(s) with "${config.packageEntry}" entry.`
);
if (applicableSrcPaths.length > 0) {
config.paths.push(...applicableSrcPaths);
}
console.log('Exporting Workspaces config to Webpack.');
console.log(config);
return config;
};
module.exports = {
init,
};