--omit=dev

This commit is contained in:
Thomas E Lackey 2023-12-14 17:34:52 -06:00
parent 036574ec03
commit 95652f9c27

View File

@ -136,4 +136,13 @@ fi
$CERC_BUILD_TOOL run cerc_compile || exit 1
case $CERC_BUILD_TOOL in
yarn)
yarn install --production --frozen-lockfile --force
;;
npm)
npm prune --omit=dev
;;
esac
exit 0