File tree 3 files changed +7
-6
lines changed
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ jobs:
23
23
- laravel : 10.*
24
24
testbench : ^8.18
25
25
carbon : ^2.67
26
- laravel-package-tools : ^1.16
26
+ laravel-package-tools : ^1.16.4
27
27
collision : 7.*
28
28
- laravel : 11.*
29
29
testbench : 9.*
30
- carbon : ^2.67|^3.0
31
- laravel-package-tools : ^1.16
30
+ carbon : " ^2.67|^3.0"
31
+ laravel-package-tools : ^1.16.4
32
32
collision : ^8.1.1
33
33
exclude :
34
34
- laravel : 11.*
Original file line number Diff line number Diff line change 34
34
"php" : " ^8.1" ,
35
35
"illuminate/contracts" : " ^10.0|^11.0|^12.0" ,
36
36
"laravel/prompts" : " ^0.1.1|^0.2|^0.3" ,
37
- "nativephp/laravel" : " ^1.0" ,
37
+ "nativephp/laravel" : " ^1.0@beta " ,
38
38
"nativephp/php-bin" : " ^0.5.1" ,
39
- "spatie/laravel-package-tools" : " ^1.14.0 "
39
+ "spatie/laravel-package-tools" : " ^1.16.4 "
40
40
},
41
41
"require-dev" : {
42
42
"laravel/pint" : " ^1.0" ,
Original file line number Diff line number Diff line change 9
9
use Native \Electron \Facades \Updater ;
10
10
use Native \Electron \Traits \InstallsAppIcon ;
11
11
use Native \Electron \Traits \OsAndArch ;
12
+ use Symfony \Component \Process \Process as SymfonyProcess ;
12
13
13
14
class BuildCommand extends Command
14
15
{
@@ -60,7 +61,7 @@ public function handle(): void
60
61
Process::path (__DIR__ .'/../../resources/js/ ' )
61
62
->env ($ this ->getEnvironmentVariables ())
62
63
->forever ()
63
- ->tty (PHP_OS_FAMILY != ' Windows ' && ! $ this ->option ('no-interaction ' ))
64
+ ->tty (SymfonyProcess:: isTtySupported () && ! $ this ->option ('no-interaction ' ))
64
65
->run ("npm run {$ buildCommand }: {$ os }" , function (string $ type , string $ output ) {
65
66
echo $ output ;
66
67
});
You can’t perform that action at this time.
0 commit comments