@@ -16,10 +16,8 @@ cd "$(dirname "$0")"
16
16
17
17
function cleanup {
18
18
echo ' Cleaning up.'
19
- cd $root_path
20
19
# Uncomment when snapshot testing is enabled by default:
21
20
# rm ./template/src/__snapshots__/App.test.js.snap
22
- rm -rf $clean_path
23
21
}
24
22
25
23
# Error messages are redirected to stderr
@@ -53,41 +51,17 @@ root_path=$PWD
53
51
# Pack react-scripts so we can verify they work.
54
52
# ******************************************************************************
55
53
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
-
79
54
# Install all our packages
80
- cd $clean_path
81
55
$root_path /node_modules/.bin/lerna bootstrap
82
56
83
- cd $clean_path / packages/react-scripts
57
+ cd packages/react-scripts
84
58
85
59
# Like bundle-deps, this script modifies packages/react-scripts/package.json,
86
60
# 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
88
62
89
63
# Finally, pack react-scripts
90
- scripts_path=$clean_path /packages/react-scripts/` npm pack`
64
+ scripts_path=$root_path /packages/react-scripts/` npm pack`
91
65
92
66
# ******************************************************************************
93
67
# Now that we have packed them, call the global CLI.
0 commit comments