Skip to content

Commit 0abc00b

Browse files
ianschmitzPavel Zhytko
authored and
Pavel Zhytko
committed
Port cra.sh development task to javascript (facebook#2309)
* Port cra.sh development task to javascript * Port cra.sh development task to javascript Use absolute path when generating .tgz path
1 parent c7be7de commit 0abc00b

File tree

3 files changed

+110
-85
lines changed

3 files changed

+110
-85
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"scripts": {
44
"build": "node packages/react-scripts/scripts/build.js",
55
"changelog": "lerna-changelog",
6-
"create-react-app": "tasks/cra.sh",
6+
"create-react-app": "node tasks/cra.js",
77
"e2e": "tasks/e2e-simple.sh",
88
"e2e:docker": "tasks/local-test.sh",
99
"postinstall": "node bootstrap.js && cd packages/react-error-overlay/ && npm run build:prod",

tasks/cra.js

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
#!/usr/bin/env node
2+
/**
3+
* Copyright (c) 2015-present, Facebook, Inc.
4+
*
5+
* This source code is licensed under the MIT license found in the
6+
* LICENSE file in the root directory of this source tree.
7+
*/
8+
9+
'use strict';
10+
11+
const fs = require('fs');
12+
const path = require('path');
13+
const cp = require('child_process');
14+
15+
const cleanup = () => {
16+
console.log('Cleaning up.');
17+
// Uncomment when snapshot testing is enabled by default:
18+
// rm ./template/src/__snapshots__/App.test.js.snap
19+
};
20+
21+
const handleExit = () => {
22+
cleanup();
23+
console.log('Exiting without error.');
24+
process.exit();
25+
};
26+
27+
const handleError = e => {
28+
console.error('ERROR! An error was encountered while executing\n', e);
29+
cleanup();
30+
console.log('Exiting with error.');
31+
process.exit(1);
32+
};
33+
34+
process.on('SIGINT', handleExit);
35+
process.on('uncaughtException', handleError);
36+
37+
// ******************************************************************************
38+
// Pack react- scripts so we can verify they work.
39+
// ******************************************************************************
40+
41+
const rootDir = path.join(__dirname, '..');
42+
const reactScriptsDir = path.join(rootDir, 'packages', 'react-scripts');
43+
const packageJsonPath = path.join(reactScriptsDir, 'package.json');
44+
const packageJsonOrigPath = path.join(reactScriptsDir, 'package.json.orig');
45+
46+
// Install all our packages
47+
const lernaPath = path.join(rootDir, 'node_modules', '.bin', 'lerna');
48+
cp.execSync(`${lernaPath} bootstrap`, {
49+
cwd: rootDir,
50+
stdio: 'inherit',
51+
});
52+
53+
// Save package.json because we're going to touch it
54+
fs.writeFileSync(packageJsonOrigPath, fs.readFileSync(packageJsonPath));
55+
56+
// Replace own dependencies (those in the`packages` dir) with the local paths
57+
// of those packages
58+
const replaceOwnDepsPath = path.join(__dirname, 'replace-own-deps.js');
59+
cp.execSync(`node ${replaceOwnDepsPath}`, { stdio: 'inherit' });
60+
61+
// Finally, pack react-scripts
62+
// Don't redirect stdio as we want to capture the output that will be returned
63+
// from execSync(). In this case it will be the .tgz filename.
64+
const scriptsFileName = cp
65+
.execSync(`npm pack`, { cwd: reactScriptsDir })
66+
.toString()
67+
.trim();
68+
const scriptsPath = path.join(
69+
rootDir,
70+
'packages',
71+
'react-scripts',
72+
scriptsFileName
73+
);
74+
75+
// Restore package.json
76+
fs.unlinkSync(packageJsonPath);
77+
fs.writeFileSync(packageJsonPath, fs.readFileSync(packageJsonOrigPath));
78+
fs.unlinkSync(packageJsonOrigPath);
79+
80+
// ******************************************************************************
81+
// Now that we have packed them, call the global CLI.
82+
// ******************************************************************************
83+
84+
// If Yarn is installed, clean its cache because it may have cached react-scripts
85+
try {
86+
cp.execSync('yarn cache clean');
87+
} catch (e) {
88+
// We can safely ignore this as the user doesn't have yarn installed
89+
}
90+
91+
const args = process.argv.slice(2);
92+
93+
// Now run the CRA command
94+
const craScriptPath = path.join(
95+
rootDir,
96+
'packages',
97+
'create-react-app',
98+
'index.js'
99+
);
100+
cp.execSync(
101+
`node ${craScriptPath} --scripts-version="${scriptsPath}" ${args.join(' ')}`,
102+
{
103+
cwd: rootDir,
104+
stdio: 'inherit',
105+
}
106+
);
107+
108+
// Cleanup
109+
handleExit();

tasks/cra.sh

-84
This file was deleted.

0 commit comments

Comments
 (0)