File size: 686 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#!/usr/bin/env bash
set -e
cd packages/next
cp node_modules/webpack/lib/hmr/HotModuleReplacement.runtime.js src/bundles/webpack/packages/
cp node_modules/webpack/lib/hmr/JavascriptHotModuleReplacement.runtime.js src/bundles/webpack/packages/
cp node_modules/webpack/hot/lazy-compilation-node.js src/bundles/webpack/packages/
cp node_modules/webpack/hot/lazy-compilation-web.js src/bundles/webpack/packages/
pnpm run ncc-compiled
cd ../../
# Make sure to exit with 1 if there are changes after running ncc-compiled
# step to ensure we get any changes committed
if [[ ! -z $(git status -s) ]] && [[ -z $IS_PUBLISH ]];then
echo "Detected changes"
git diff -a --stat
exit 1
fi
|