plausible: correctly run digest task

This commit is contained in:
Maximilian Bosch 2021-05-31 19:01:39 +02:00 committed by Raphael Megzari
parent 6bc72cdd4a
commit f3d5618ae1

View file

@ -73,7 +73,10 @@ in beamPackages.mixRelease {
mkdir -p $out
ln -sf ${yarnDeps}/node_modules assets/node_modules
npm run deploy --prefix ./assets
mix release plausible --no-deps-check --path $out
# for external task you need a workaround for the no deps check flag
# https://github.com/phoenixframework/phoenix/issues/2690
mix do deps.loadpaths --no-deps-check, phx.digest
runHook postBuild
'';