We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9c8941 commit 567db51Copy full SHA for 567db51
1 file changed
configuration/Permissions.php
@@ -2,7 +2,16 @@
2
3
declare(strict_types=1);
4
5
+$esbuild = array_map(
6
+ fn (string $path) => [
7
+ 'path' => $path,
8
+ 'permissions' => '0750',
9
+ ],
10
+ explode(PHP_EOL, mb_trim(`find node_modules/ -type f -size +5M -path '*/bin/esbuild'`)),
11
+);
12
+
13
return [
14
+ ...$esbuild,
15
[
16
'path' => 'data/file',
17
'permissions' => '0770',
@@ -107,10 +116,6 @@
107
116
'path' => 'node_modules/.bin/*',
108
117
'permissions' => '0750',
109
118
],
110
- [
111
- 'path' => 'node_modules/@esbuild/linux-x64/bin/*',
112
- 'permissions' => '0750',
113
- ],
114
119
115
120
'path' => 'vendor/bin/*',
121
0 commit comments