Skip to content

Commit e94c9a8

Browse files
committed
Update yarn install command to use frozen lockfile and non-interactive mode
1 parent 56895c7 commit e94c9a8

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"php bin/console cache:warmup"
9898
],
9999
"build-web-frontend-assets": [
100-
"yarn install",
100+
"yarn install --frozen-lockfile --non-interactive",
101101
"yarn build:web-frontend"
102102
],
103103
"post-install-cmd": [

tests/Integration/Composer/ScriptsTest.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,7 @@ private function getAbsolutePublicDirectoryPath(): string
2929
public static function publicDirectoryFilesDataProvider(): array
3030
{
3131
return [
32-
'production entry point' => ['app.php'],
33-
'development entry point' => ['app_dev.php'],
34-
'testing entry point' => ['app_test.php'],
32+
'entry point' => ['index.php'],
3533
'.htaccess' => ['.htaccess'],
3634
];
3735
}

0 commit comments

Comments
 (0)