We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b91bf66 commit ba7539dCopy full SHA for ba7539d
tests/e2e.sh
@@ -19,8 +19,18 @@ set -x
19
# npm pack the two directories to make sure they are valid npm modules
20
initial_path=$PWD
21
cd ..
22
+
23
+# A hacky way to avoid bundling dependencies.
24
+# Packing with them enabled takes too much memory, and Travis crashes.
25
+# End to end script is meant to run on Travis so it's not a big deal.
26
+# If you run it locally, you'll need to `git checkout -- package.json`.
27
+perl -i -p0e 's/bundledDependencies.*?]/bundledDependencies": []/s' package.json
28
29
+# Pack react-scripts
30
npm install
31
scripts_path=$PWD/`npm pack`
32
33
+# Pack CLI
34
cd global-cli
35
36
cli_path=$PWD/`npm pack`
0 commit comments