Rename public directory

This commit is contained in:
Björn Fromme
2019-06-06 09:53:25 +02:00
parent 5ea4db814e
commit a299c7ccce
968 changed files with 35 additions and 35 deletions
+17 -17
View File
@@ -6,20 +6,20 @@ vendor
node_modules node_modules
bower_components bower_components
typo3 typo3
web/fileadmin public/fileadmin
web/typo3conf/ENABLE_INSTALL_TOOL public/typo3conf/ENABLE_INSTALL_TOOL
web/typo3conf/realurl_autoconf.php public/typo3conf/realurl_autoconf.php
web/typo3conf/deprecation* public/typo3conf/deprecation*
web/typo3conf/ext/ public/typo3conf/ext/
!web/typo3conf/ext/ep_events/ !public/typo3conf/ext/ep_events/
!web/typo3conf/ext/ep_products/ !public/typo3conf/ext/ep_products/
!web/typo3conf/ext/ep_theme/ !public/typo3conf/ext/ep_theme/
!web/typo3conf/ext/ep_track/ !public/typo3conf/ext/ep_track/
web/typo3conf/ext/ep_events/Resources/Public/ public/typo3conf/ext/ep_events/Resources/Public/
web/typo3conf/ext/ep_theme/Resources/Public/ public/typo3conf/ext/ep_theme/Resources/Public/
web/typo3conf/LocalConfiguration.php public/typo3conf/LocalConfiguration.php
web/typo3conf/AdditionalConfiguration.php public/typo3conf/AdditionalConfiguration.php
web/typo3conf/PackageStates.php public/typo3conf/PackageStates.php
web/typo3conf/l10n public/typo3conf/l10n
web/typo3temp public/typo3temp
web/uploads public/uploads
+5 -5
View File
@@ -82,7 +82,7 @@
"extra": { "extra": {
"typo3/cms": { "typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms", "cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "web" "web-dir": "public"
}, },
"helhum/typo3-console": { "helhum/typo3-console": {
"install-extension-dummy": false "install-extension-dummy": false
@@ -90,10 +90,10 @@
}, },
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"EP\\EpEvents\\": "web/typo3conf/ext/ep_events/Classes", "EP\\EpEvents\\": "public/typo3conf/ext/ep_events/Classes",
"EP\\EpProducts\\": "web/typo3conf/ext/ep_products/Classes", "EP\\EpProducts\\": "public/typo3conf/ext/ep_products/Classes",
"EP\\EpTheme\\": "web/typo3conf/ext/ep_theme/Classes", "EP\\EpTheme\\": "public/typo3conf/ext/ep_theme/Classes",
"EP\\EpTrack\\": "web/typo3conf/ext/ep_track/Classes" "EP\\EpTrack\\": "public/typo3conf/ext/ep_track/Classes"
} }
}, },
"require-dev": { "require-dev": {
+4 -4
View File
@@ -35,15 +35,15 @@ task('build', function () {
task('upload:epevents', function () { task('upload:epevents', function () {
upload( upload(
__DIR__ . '/web/typo3conf/ext/ep_events/Resources/Public/', __DIR__ . '/public/typo3conf/ext/ep_events/Resources/Public/',
'{{release_path}}/web/typo3conf/ext/ep_events/Resources/Public' '{{release_path}}/public/typo3conf/ext/ep_events/Resources/Public'
); );
}); });
task('upload:eptheme', function () { task('upload:eptheme', function () {
upload( upload(
__DIR__ . '/web/typo3conf/ext/ep_theme/Resources/Public/', __DIR__ . '/public/typo3conf/ext/ep_theme/Resources/Public/',
'{{release_path}}/web/typo3conf/ext/ep_theme/Resources/Public' '{{release_path}}/public/typo3conf/ext/ep_theme/Resources/Public'
); );
}); });
View File

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

Some files were not shown because too many files have changed in this diff Show More