Skip to content

Commit

Permalink
actually build the app
Browse files Browse the repository at this point in the history
  • Loading branch information
snowystinger committed Jan 21, 2023
1 parent 0713337 commit 2b6c410
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion scripts/verdaccio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,18 @@ then
mv dist/production/docs $verdaccio_path

# install packages in CRA test app
cd examples/rsp-cra-18-webpack-4
cd examples/rsp-cra-18
yarn install

# Build CRA test app and move to dist folder. Store the size of the build in a text file.
yarn build | tee build-stats.txt
du -ka build/ | tee -a build-stats.txt
mkdir -p ../../$verdaccio_path/publish-stats
mv build-stats.txt ../../
mv build ../../$verdaccio_path

# install packages in webpack 4 test app
cd ../../examples/rsp-webpack-4
yarn install

# Build CRA test app and move to dist folder. Store the size of the build in a text file.
Expand Down

1 comment on commit 2b6c410

@rspbot
Copy link

@rspbot rspbot commented on 2b6c410 Jan 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.