Bug 32991: Don't remove all messages when confirm box is closed
[koha-ffzg.git] / build-resources.PL
index 456161e..ec7c13b 100755 (executable)
@@ -32,7 +32,10 @@ This helper script ensures that src JS and SCSS files are compiled for packaging
 
 =cut
 
-my $command = "yarn build:prod";
-system($command);
+my $install_command = "yarn install --frozen-lockfile";
+system($install_command);
+
+my $build_command = "yarn build:prod";
+system($build_command);
 
 1;