File tree 2 files changed +10
-0
lines changed
2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 58
58
" rm -rf public/components/bootstrap" ,
59
59
" cp -R vendor/twbs/bootstrap/dist public/components/bootstrap"
60
60
],
61
+ "copy-bootstrap-windows" : [
62
+ " if exist public\\ components\\ bootstrap rmdir /s /q public\\ components\\ bootstrap" ,
63
+ " xcopy vendor\\ twbs\\ bootstrap\\ dist public\\ components\\ bootstrap /e /i /q /y"
64
+ ],
61
65
"copy-jqueryui" : [
62
66
" rm -rf public/components/jquery-ui" ,
63
67
" cp -R vendor/jquery/jquery-ui/dist public/components/jquery-ui"
64
68
],
69
+ "copy-jqueryui-windows" : [
70
+ " if exist public\\ components\\ jquery-ui rmdir /s /q public\\ components\\ jquery-ui" ,
71
+ " xcopy vendor\\ jquery\\ jquery-ui\\ dist public\\ components\\ jquery-ui /e /i /q /y"
72
+ ],
65
73
"update-assets" :[
66
74
" ComposerBootstrap::installAssets" ,
67
75
" ComponentMirror::postAutoloadDump" ,
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ if errorlevel 1 (
9
9
)
10
10
php bin/console lexik:jwt:generate-keypair
11
11
php bin/composer run post-install-cmd
12
+ php bin/composer run copy-bootstrap-windows
13
+ php bin/composer run copy-jqueryui-windows
12
14
echo Bootstrap finished!
13
15
echo If you want to run the builtin development server, install Symfony CLI from https://symfony.com/download then run:
14
16
echo cd application
You can’t perform that action at this time.
0 commit comments