We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cc2a0d commit 7133a6fCopy full SHA for 7133a6f
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/accounting',
17
'permissions' => '0770',
@@ -131,8 +140,4 @@
131
140
'path' => 'node_modules/.bin/*',
132
141
'permissions' => '0750',
133
142
],
134
- [
135
- 'path' => 'node_modules/@esbuild/linux-x64/bin/*',
136
- 'permissions' => '0750',
137
- ],
138
143
];
0 commit comments