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 0713337 commit 2b6c410Copy full SHA for 2b6c410
scripts/verdaccio.sh
@@ -83,7 +83,18 @@ then
83
mv dist/production/docs $verdaccio_path
84
85
# install packages in CRA test app
86
- cd examples/rsp-cra-18-webpack-4
+ cd examples/rsp-cra-18
87
+ yarn install
88
+
89
+ # Build CRA test app and move to dist folder. Store the size of the build in a text file.
90
+ yarn build | tee build-stats.txt
91
+ du -ka build/ | tee -a build-stats.txt
92
+ mkdir -p ../../$verdaccio_path/publish-stats
93
+ mv build-stats.txt ../../
94
+ mv build ../../$verdaccio_path
95
96
+ # install packages in webpack 4 test app
97
+ cd ../../examples/rsp-webpack-4
98
yarn install
99
100
# Build CRA test app and move to dist folder. Store the size of the build in a text file.
0 commit comments