Skip to content

Commit 90ce8ab

Browse files
hycnergaearon
authored andcommitted
facebook#765 - Work on removing publish feature flags. Removing copying files in cra.sh & release.sh (facebook#861)
1 parent ad57c45 commit 90ce8ab

File tree

3 files changed

+20
-69
lines changed

3 files changed

+20
-69
lines changed

packages/react-scripts/config/paths.js

+15-14
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,18 @@ module.exports = {
7070
};
7171
// @remove-on-eject-end
7272

73-
// @remove-on-publish-begin
74-
module.exports = {
75-
appBuild: resolveOwn('../../../build'),
76-
appPublic: resolveOwn('../template/public'),
77-
appHtml: resolveOwn('../template/public/index.html'),
78-
appIndexJs: resolveOwn('../template/src/index.js'),
79-
appPackageJson: resolveOwn('../package.json'),
80-
appSrc: resolveOwn('../template/src'),
81-
testsSetup: resolveOwn('../template/src/setupTests.js'),
82-
appNodeModules: resolveOwn('../node_modules'),
83-
ownNodeModules: resolveOwn('../node_modules'),
84-
nodePaths: nodePaths
85-
};
86-
// @remove-on-publish-end
73+
// config before publish: we're in ./packages/react-scripts/config/
74+
if (__dirname.indexOf(path.join('packages', 'react-scripts', 'config')) !== -1) {
75+
module.exports = {
76+
appBuild: resolveOwn('../../../build'),
77+
appPublic: resolveOwn('../template/public'),
78+
appHtml: resolveOwn('../template/public/index.html'),
79+
appIndexJs: resolveOwn('../template/src/index.js'),
80+
appPackageJson: resolveOwn('../package.json'),
81+
appSrc: resolveOwn('../template/src'),
82+
testsSetup: resolveOwn('../template/src/setupTests.js'),
83+
appNodeModules: resolveOwn('../node_modules'),
84+
ownNodeModules: resolveOwn('../node_modules'),
85+
nodePaths: nodePaths
86+
};
87+
}

tasks/cra.sh

+3-29
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@ cd "$(dirname "$0")"
1616

1717
function cleanup {
1818
echo 'Cleaning up.'
19-
cd $root_path
2019
# Uncomment when snapshot testing is enabled by default:
2120
# rm ./template/src/__snapshots__/App.test.js.snap
22-
rm -rf $clean_path
2321
}
2422

2523
# Error messages are redirected to stderr
@@ -53,41 +51,17 @@ root_path=$PWD
5351
# Pack react-scripts so we can verify they work.
5452
# ******************************************************************************
5553

56-
# Packing react-scripts takes some work because we want to clean it up first.
57-
# Create a temporary clean folder that contains production only code.
58-
# Do not overwrite any files in the current folder.
59-
clean_path=`mktemp -d 2>/dev/null || mktemp -d -t 'clean_path'`
60-
61-
# Copy some of the react-scripts project files to the temporary folder.
62-
# Exclude folders that definitely won’t be part of the package from processing.
63-
# We will strip the dev-only code there, `npm pack`, and copy the package back.
64-
cd $root_path
65-
rsync -av --exclude='.git' --exclude=$clean_path\
66-
--exclude='node_modules' --exclude='build'\
67-
'./' $clean_path >/dev/null
68-
69-
# Open the clean folder
70-
cd $clean_path/packages/react-scripts
71-
72-
# Now remove all the code relevant to development of Create React App.
73-
files="$(find -L . -name "*.js" -type f)"
74-
for file in $files; do
75-
sed -i.bak '/\/\/ @remove-on-publish-begin/,/\/\/ @remove-on-publish-end/d' $file
76-
rm $file.bak
77-
done
78-
7954
# Install all our packages
80-
cd $clean_path
8155
$root_path/node_modules/.bin/lerna bootstrap
8256

83-
cd $clean_path/packages/react-scripts
57+
cd packages/react-scripts
8458

8559
# Like bundle-deps, this script modifies packages/react-scripts/package.json,
8660
# copying own dependencies (those in the `packages` dir) to bundledDependencies
87-
node $clean_path/tasks/bundle-own-deps.js
61+
node $root_path/tasks/bundle-own-deps.js
8862

8963
# Finally, pack react-scripts
90-
scripts_path=$clean_path/packages/react-scripts/`npm pack`
64+
scripts_path=$root_path/packages/react-scripts/`npm pack`
9165

9266
# ******************************************************************************
9367
# Now that we have packed them, call the global CLI.

tasks/release.sh

+2-26
Original file line numberDiff line numberDiff line change
@@ -39,25 +39,6 @@ if [ -n "$(git status --porcelain)" ]; then
3939
exit 1;
4040
fi
4141

42-
# Create a temporary clean folder that contains production only code.
43-
# Do not overwrite any files in the current folder.
44-
clean_path=`mktemp -d 2>/dev/null || mktemp -d -t 'clean_path'`
45-
46-
# Copy some of the project files to the temporary folder.
47-
# Exclude folders that definitely won’t be part of the package from processing.
48-
# We will strip the dev-only code there, and publish from it.
49-
rsync -av --exclude=$clean_path\
50-
--exclude='node_modules' --exclude='build'\
51-
'./' $clean_path >/dev/null
52-
cd $clean_path
53-
54-
# Now remove all the code relevant to development of Create React App.
55-
files="$(find -L . -name "*.js" -type f)"
56-
for file in $files; do
57-
sed -i.bak '/\/\/ @remove-on-publish-begin/,/\/\/ @remove-on-publish-end/d' $file
58-
rm $file.bak
59-
done
60-
6142
# Update deps
6243
rm -rf node_modules
6344
rm -rf ~/.npm
@@ -72,14 +53,9 @@ npm dedupe
7253
# Since it's in optionalDependencies, it will attempt install outside bundle
7354
rm -rf node_modules/fsevents
7455

75-
# This modifies $clean_path/package.json to copy all dependencies to bundledDependencies
56+
# This modifies package.json to copy all dependencies to bundledDependencies
7657
node ./node_modules/.bin/bundle-deps
7758

78-
cd $clean_path
79-
59+
cd $root_path
8060
# Go!
8161
./node_modules/.bin/lerna publish --independent "$@"
82-
83-
# cleanup
84-
cd ..
85-
rm -rf $clean_path

0 commit comments

Comments
 (0)