-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Beaufity output of eject.js script #769
Changes from 3 commits
350b2bc
822ad8c
bfe4850
1c5f505
173e87c
41345b7
259b6f5
52b7123
917404e
1a8ff9e
4b9fa8a
f6f635d
79a4c2b
c440b27
52c432f
308a21e
2e208c9
40fa310
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,18 +13,21 @@ var path = require('path'); | |
var prompt = require('react-dev-utils/prompt'); | ||
var rimrafSync = require('rimraf').sync; | ||
var spawnSync = require('cross-spawn').sync; | ||
var chalk = require('chalk'); | ||
var green = chalk.green; | ||
var cyan = chalk.cyan; | ||
var red = chalk.red; | ||
|
||
prompt( | ||
'Are you sure you want to eject? This action is permanent.', | ||
false | ||
).then(shouldEject => { | ||
if (!shouldEject) { | ||
console.log('Close one! Eject aborted.'); | ||
console.log(cyan('Close one! Eject aborted.')); | ||
process.exit(1); | ||
} | ||
|
||
console.log('Ejecting...'); | ||
console.log(); | ||
|
||
var ownPath = path.join(__dirname, '..'); | ||
var appPath = path.join(ownPath, '..', '..'); | ||
|
@@ -61,8 +64,10 @@ prompt( | |
fs.mkdirSync(path.join(appPath, 'config', 'jest')); | ||
fs.mkdirSync(path.join(appPath, 'scripts')); | ||
|
||
console.log(); | ||
console.log(cyan('Copying files')); | ||
files.forEach(function(file) { | ||
console.log('Copying ' + file + ' to ' + appPath); | ||
console.log(cyan(' Copying ') + file+ ' to ' + appPath); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you try making There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Looking at the output, it prints the same giant appPath on every single line. Suggestion: could we put this path in the header instead?
|
||
var content = fs | ||
.readFileSync(path.join(ownPath, file), 'utf8') | ||
// Remove dead code from .js files on eject | ||
|
@@ -76,21 +81,21 @@ prompt( | |
|
||
var ownPackage = require(path.join(ownPath, 'package.json')); | ||
var appPackage = require(path.join(appPath, 'package.json')); | ||
|
||
console.log(cyan('Managing dependencies')); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let’s call this |
||
var ownPackageName = ownPackage.name; | ||
console.log('Removing dependency: ' + ownPackageName); | ||
console.log(red(' Removing dependency: ') + ownPackageName); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let’s use |
||
delete appPackage.devDependencies[ownPackageName]; | ||
|
||
Object.keys(ownPackage.dependencies).forEach(function (key) { | ||
// For some reason optionalDependencies end up in dependencies after install | ||
if (ownPackage.optionalDependencies[key]) { | ||
return; | ||
} | ||
console.log('Adding dependency: ' + key); | ||
console.log(cyan(' Adding dependency: ') + key); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar, let’s make dependency name |
||
appPackage.devDependencies[key] = ownPackage.dependencies[key]; | ||
}); | ||
|
||
console.log('Updating scripts'); | ||
console.log(); | ||
console.log(cyan('Updating scripts')); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here, let’s add |
||
delete appPackage.scripts['eject']; | ||
Object.keys(appPackage.scripts).forEach(function (key) { | ||
appPackage.scripts[key] = appPackage.scripts[key] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Let’s print each step here?
|
||
|
@@ -107,20 +112,21 @@ prompt( | |
true | ||
); | ||
|
||
console.log('Writing package.json'); | ||
console.log(); | ||
console.log(cyan('Writing ') + 'package.json'); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And here |
||
fs.writeFileSync( | ||
path.join(appPath, 'package.json'), | ||
JSON.stringify(appPackage, null, 2) | ||
); | ||
console.log(); | ||
|
||
console.log('Running npm install...'); | ||
console.log(cyan('Running npm install...')); | ||
rimrafSync(ownPath); | ||
spawnSync('npm', ['install'], {stdio: 'inherit'}); | ||
console.log('Ejected successfully!'); | ||
console.log(green('Ejected successfully!')); | ||
console.log(); | ||
|
||
console.log('Please consider sharing why you ejected in this survey:'); | ||
console.log(' http://goo.gl/forms/Bi6CZjk1EqsdelXk1'); | ||
console.log(); | ||
}); | ||
console.log(green('Please consider sharing why you ejected in this survey:')); | ||
console.log(green(' http://goo.gl/forms/Bi6CZjk1EqsdelXk1')); | ||
console.log() | ||
}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let’s add
...
at the end of every group title