forked from adobe/react-spectrum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildBranchAPI.js
More file actions
261 lines (239 loc) · 8.74 KB
/
Copy pathbuildBranchAPI.js
File metadata and controls
261 lines (239 loc) · 8.74 KB
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
/*
* Copyright 2020 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/
const tempy = require('tempy');
const fs = require('fs');
const packageJSON = require('../package.json');
const path = require('path');
const glob = require('fast-glob');
const spawn = require('cross-spawn');
const {parseArgs} = require('util');
const args = parseArgs({
options: {
verbose: {
short: 'v',
type: 'boolean'
},
output: {
short: 'o',
type: 'string'
},
githash: {
type: 'string'
}
}
});
build().catch(err => {
console.error(err.stack);
process.exit(1);
});
/**
* Building this will run the docs builder using the apiCheck pipeline in .parcelrc This will
* generate json containing the visible (API/exposed) type definitions for each package This is run
* against the current branch by copying the current branch into a temporary directory and building
* there.
*/
async function build() {
let backupDir = tempy.directory();
let archiveDir;
if (args.values.githash) {
archiveDir = tempy.directory();
console.log('checking out archive of', args.values.githash, 'into', archiveDir);
await run('sh', ['-c', `git archive ${args.values.githash} | tar -x -C ${archiveDir}`], {
stdio: 'inherit'
});
await run('sh', ['-c', `git archive HEAD | tar -x -C ${backupDir}`], {stdio: 'inherit'});
}
let srcDir = archiveDir ?? path.join(__dirname, '..');
let distDir = path.join(__dirname, '..', 'dist', args.values.output ?? 'branch-api');
// if we already have a directory with a built dist, remove it so we can write cleanly into it at the end
fs.rmSync(distDir, {recursive: true, force: true});
// Create a temp directory to build the site in
let dir = tempy.directory();
console.log(`Building branch api into ${dir}...`);
// Generate a package.json containing just what we need to build the website
let pkg = {
name: 'rsp-website',
packageManager: '[email protected]',
version: '0.0.0',
private: true,
workspaces: [
'packages/react-stately',
'packages/react-aria',
'packages/react-aria-components',
'packages/tailwindcss-react-aria-components',
'packages/*/*'
],
devDependencies: Object.fromEntries(
Object.entries(packageJSON.devDependencies).filter(
([name]) =>
name.startsWith('@parcel') ||
name === 'parcel' ||
name === 'patch-package' ||
name.startsWith('@spectrum-css') ||
name.startsWith('@testing-library') ||
name.startsWith('postcss') ||
name.startsWith('@adobe') ||
name === 'react' ||
name === 'react-dom'
)
),
dependencies: {},
resolutions: packageJSON.resolutions,
browserslist: packageJSON.browserslist,
scripts: {
build: 'yarn parcel build packages/@react-spectrum/actiongroup',
postinstall: 'patch-package'
},
'@parcel/resolver-default': {
packageExports: true
}
};
// Add dependencies on each published package to the package.json, and
// copy the docs from the current package into the temp dir.
let packagesDir = path.join(srcDir, 'packages');
let packages = glob.sync('*/**/package.json', {cwd: packagesDir, ignore: ['**/node_modules/**']});
pkg.devDependencies['babel-plugin-transform-glob-import'] = '*';
fs.writeFileSync(path.join(dir, 'package.json'), JSON.stringify(pkg, false, 2));
fs.writeFileSync(
path.join(dir, 'babel.config.json'),
`{
"plugins": [
"transform-glob-import"
]
}`
);
// Copy necessary code and configuration over
fs.cpSync(
path.join(srcDir, 'packages', '@adobe', 'spectrum-css-temp'),
path.join(dir, 'packages', '@adobe', 'spectrum-css-temp'),
{recursive: true}
);
try {
fs.cpSync(
path.join(srcDir, 'packages', '@adobe', 'spectrum-css-builder-temp'),
path.join(dir, 'packages', '@adobe', 'spectrum-css-builder-temp'),
{recursive: true}
);
} catch (e) {
fs.cpSync(
path.join(backupDir, 'packages', '@adobe', 'spectrum-css-builder-temp'),
path.join(dir, 'packages', '@adobe', 'spectrum-css-builder-temp'),
{recursive: true}
);
}
fs.cpSync(path.join(srcDir, 'postcss.config.js'), path.join(dir, 'postcss.config.js'));
fs.cpSync(path.join(srcDir, 'lib'), path.join(dir, 'lib'), {recursive: true});
fs.cpSync(path.join(srcDir, 'CONTRIBUTING.md'), path.join(dir, 'CONTRIBUTING.md'));
// need dev from latest on branch since it will generate the API for diffing, and in older commits it may not be able to do this or
// does it in a different format
fs.cpSync(path.join(__dirname, '..', 'packages', 'dev'), path.join(dir, 'packages', 'dev'), {
recursive: true
});
fs.cpSync(path.join(__dirname, '..', '.parcelrc'), path.join(dir, '.parcelrc'));
// Delete test-utils from copied packages since we don't expose anything from there
fs.rmSync(path.join(dir, 'packages', 'dev', 'test-utils'), {recursive: true, force: true});
fs.cpSync(path.join(__dirname, '..', '.yarn'), path.join(dir, '.yarn'), {recursive: true});
fs.cpSync(path.join(__dirname, '..', '.yarnrc.yml'), path.join(dir, '.yarnrc.yml'));
// Only copy babel patch over
let patches = fs.readdirSync(path.join(srcDir, 'patches'));
let babelPatch = patches.find(name => name.startsWith('@babel'));
fs.cpSync(path.join(srcDir, 'patches', babelPatch), path.join(dir, 'patches', babelPatch), {
recursive: true
});
// Collect workspace package names so we can strip intra-monorepo dependencies.
// Sibling packages may pin exact versions (e.g. "@adobe/react-spectrum": "3.47.0")
// that don't match the workspace version being built, causing yarn to install from
// npm instead of symlinking to the workspace. Removing these entries lets yarn always
// resolve them via the workspace.
let workspacePackageNames = new Set(
packages
.map(p => {
try {
return JSON.parse(fs.readFileSync(path.join(srcDir, 'packages', p), 'utf8')).name;
} catch {
return null;
}
})
.filter(Boolean)
);
let excludeList = ['@react-spectrum/story-utils'];
// Copy packages over to temp dir
console.log('copying over');
for (let p of packages) {
if (!p.includes('spectrum-css') && !p.includes('example-theme') && !p.includes('dev/')) {
let json = JSON.parse(fs.readFileSync(path.join(srcDir, 'packages', p)), 'utf8');
if (json.name in excludeList) {
continue;
}
fs.cpSync(
path.join(srcDir, 'packages', path.dirname(p)),
path.join(dir, 'packages', path.dirname(p)),
{dereference: true, recursive: true}
);
if (!p.includes('@react-types')) {
delete json.types;
}
delete json.main;
delete json.module;
delete json.devDependencies;
if (json.dependencies) {
for (let dep of Object.keys(json.dependencies)) {
if (workspacePackageNames.has(dep)) {
delete json.dependencies[dep];
}
}
}
json.apiCheck = 'dist/api.json';
json.targets = {
apiCheck: {}
};
fs.writeFileSync(path.join(dir, 'packages', p), JSON.stringify(json, false, 2));
}
}
// Install dependencies from npm
fs.cpSync(path.join(srcDir, 'yarn.lock'), path.join(dir, 'yarn.lock'));
await run('yarn', ['--no-immutable'], {cwd: dir, stdio: 'inherit'});
// Build the website
console.log('building api files');
await run(
'yarn',
[
'parcel',
'build',
'packages/react-aria-components',
'packages/@react-{spectrum,aria,stately}/*/',
'packages/@internationalized/{message,string,date,number}',
'--target',
'apiCheck'
],
{cwd: dir, stdio: 'inherit'}
);
// Copy the build back into dist, and delete the temp dir.
fs.cpSync(path.join(dir, 'packages'), distDir, {dereference: true, recursive: true});
fs.rmSync(dir, {recursive: true, force: true});
if (archiveDir) {
fs.rmSync(archiveDir, {recursive: true, force: true});
}
}
function run(cmd, args, opts) {
return new Promise((resolve, reject) => {
let child = spawn(cmd, args, opts);
child.on('error', reject);
child.on('close', code => {
if (code !== 0) {
reject(new Error('Child process failed'));
return;
}
resolve();
});
});
}