react-code-dataset / next.js /scripts /check-pre-compiled.sh
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
#!/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