Skip to content

Commit b79413f

Browse files
committed
execute deploy:vendors task before any TYPO3 command
1 parent 79c24ee commit b79413f

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/recipe/typo3.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ The [deploy](#deploy) task of **TYPO3** consists of:
3434
* [deploy:release](/docs/recipe/deploy/release.md#deploy-release) – Prepares release
3535
* [typo3:update_code](/docs/recipe/typo3.md#typo3-update_code)
3636
* [deploy:shared](/docs/recipe/deploy/shared.md#deploy-shared) – Creates symlinks for shared files and dirs
37-
* [typo3:install:fixfolderstructure](/docs/recipe/typo3.md#typo3-install-fixfolderstructure) – TYPO3 - Fix folder structure
3837
* [deploy:writable](/docs/recipe/deploy/writable.md#deploy-writable) – Makes writable dirs
38+
* [deploy:vendors](/docs/recipe/deploy/vendors.md#deploy-vendors) – Installs vendors
39+
* [typo3:install:fixfolderstructure](/docs/recipe/typo3.md#typo3-install-fixfolderstructure) – TYPO3 - Fix folder structure
3940
* [typo3:extension:setup](/docs/recipe/typo3.md#typo3-extension-setup) – TYPO3 - Set up all extensions
4041
* [typo3:language:update](/docs/recipe/typo3.md#typo3-language-update) – TYPO3 - Update the language files of all activated extensions
41-
* [deploy:vendors](/docs/recipe/deploy/vendors.md#deploy-vendors) – Installs vendors
4242
* [typo3:cache:flush](/docs/recipe/typo3.md#typo3-cache-flush) – TYPO3 - Clear all caches
4343
* [typo3:cache:warmup](/docs/recipe/typo3.md#typo3-cache-warmup) – TYPO3 - Cache warmup for system caches
4444
* [deploy:publish](/docs/recipe/common.md#deploy-publish) – Publishes the release
@@ -242,39 +242,39 @@ All run via [bin/php](/docs/recipe/common.md#bin/php) [release_path](/docs/recip
242242

243243

244244
### typo3\:cache\:warmup {#typo3-cache-warmup}
245-
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L176)
245+
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L178)
246246

247247
TYPO3 - Cache warmup for system caches.
248248

249249

250250

251251

252252
### typo3\:language\:update {#typo3-language-update}
253-
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L181)
253+
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L183)
254254

255255
TYPO3 - Update the language files of all activated extensions.
256256

257257

258258

259259

260260
### typo3\:extension\:setup {#typo3-extension-setup}
261-
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L186)
261+
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L188)
262262

263263
TYPO3 - Set up all extensions.
264264

265265

266266

267267

268268
### typo3\:install\:fixfolderstructure {#typo3-install-fixfolderstructure}
269-
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L191)
269+
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L193)
270270

271271
TYPO3 - Fix folder structure.
272272

273273

274274

275275

276276
### deploy {#deploy}
277-
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L212)
277+
[Source](https://github.com/deployphp/deployer/blob/master/recipe/typo3.php#L214)
278278

279279
Deploys a TYPO3 project.
280280

@@ -301,11 +301,11 @@ This task is group task which contains next tasks:
301301
* [deploy:release](/docs/recipe/deploy/release.md#deploy-release)
302302
* [typo3:update_code](/docs/recipe/typo3.md#typo3-update_code)
303303
* [deploy:shared](/docs/recipe/deploy/shared.md#deploy-shared)
304-
* [typo3:install:fixfolderstructure](/docs/recipe/typo3.md#typo3-install-fixfolderstructure)
305304
* [deploy:writable](/docs/recipe/deploy/writable.md#deploy-writable)
305+
* [deploy:vendors](/docs/recipe/deploy/vendors.md#deploy-vendors)
306+
* [typo3:install:fixfolderstructure](/docs/recipe/typo3.md#typo3-install-fixfolderstructure)
306307
* [typo3:extension:setup](/docs/recipe/typo3.md#typo3-extension-setup)
307308
* [typo3:language:update](/docs/recipe/typo3.md#typo3-language-update)
308-
* [deploy:vendors](/docs/recipe/deploy/vendors.md#deploy-vendors)
309309
* [typo3:cache:flush](/docs/recipe/typo3.md#typo3-cache-flush)
310310
* [typo3:cache:warmup](/docs/recipe/typo3.md#typo3-cache-warmup)
311311
* [deploy:publish](/docs/recipe/common.md#deploy-publish)

recipe/typo3.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,11 +216,11 @@
216216
'deploy:release',
217217
'typo3:update_code',
218218
'deploy:shared',
219-
'typo3:install:fixfolderstructure',
220219
'deploy:writable',
220+
'deploy:vendors',
221+
'typo3:install:fixfolderstructure',
221222
'typo3:extension:setup',
222223
'typo3:language:update',
223-
'deploy:vendors',
224224
'typo3:cache:flush',
225225
'typo3:cache:warmup',
226226
'deploy:publish',

0 commit comments

Comments
 (0)