5 Commits

Author SHA1 Message Date
e19992726a Add filefill extension to composer.json
All checks were successful
Build / build (pull_request) Successful in 2m2s
2024-12-29 12:13:55 +01:00
5d039e2b63 Merge pull request 'Fix: Remove unwanted console log' (#14) from fix/unwanted-console-log into main
All checks were successful
Build / build (push) Successful in 4m5s
Build / deploy-stage (push) Successful in 3m2s
Build / switch-stage (push) Successful in 1m58s
Build / deploy-production (push) Successful in 2m51s
Reviewed-on: #14
2024-12-29 03:34:42 +01:00
5df5588b84 fix: remove unwanted console log
All checks were successful
Build / build (pull_request) Successful in 3m8s
2024-12-29 03:30:49 +01:00
9503b13aee Merge pull request 'Fix: Make composer.lock removal conditional' (#13) from fix/gitea-build-action into main
Some checks failed
Build / switch-stage (push) Blocked by required conditions
Build / build (push) Successful in 5m43s
Build / deploy-stage (push) Has been cancelled
Build / deploy-production (push) Has been cancelled
Reviewed-on: #13
2024-12-29 03:28:05 +01:00
29751dda93 fix: make composer.lock removal conditional
All checks were successful
Build / build (pull_request) Successful in 2m49s
2024-12-29 03:13:04 +01:00
3 changed files with 6 additions and 21 deletions

View File

@@ -1,3 +1,4 @@
name: Build
on:
@@ -26,7 +27,7 @@ jobs:
- name: Run composer install if composer.json exists
run: |
rm composer.lock
[ -f composer.lock ] && rm composer.lock
composer validate --no-check-publish
- name: Set up Node.js

View File

@@ -42,8 +42,6 @@
"typo3/cms-filemetadata": "^13.4",
"typo3/cms-fluid": "^13.4",
"typo3/cms-fluid-styled-content": "^13.4",
"typo3/cms-form": "^13.4",
"typo3/cms-frontend": "^13.4",
"typo3/cms-indexed-search": "^13.4",
"typo3/cms-info": "^13.4",
"typo3/cms-install": "^13.4",
@@ -53,28 +51,18 @@
"typo3/cms-recycler": "^13.4",
"typo3/cms-redirects": "^13.4",
"typo3/cms-reports": "^13.4",
"typo3/cms-rte-ckeditor": "^13.4",
"typo3/cms-scheduler": "^13.4",
"typo3/cms-seo": "^13.4",
"typo3/cms-setup": "^13.4",
"typo3/cms-sys-note": "^13.4",
"typo3/cms-tstemplate": "^13.4",
"typo3/cms-viewpage": "^13.4",
"typo3/cms-viewport": "^13.4",
"typo3/minimal": "^13.4",
"wapplersystems/ws-scss": "^13.0"
"wapplersystems/ws-scss": "^13.0",
"ichhabrecht/filefill": "^4.3.2"
},
"require-dev": {
"deployer/deployer": "^7.4",
"friendsoftypo3/phpstan-typo3": "^0.9",
"phpmd/phpmd": "^2.10",
"phpstan/phpstan": "^1.8",
"rector/rector": "0.13.4",
"squizlabs/php_codesniffer": "^3.6"
},
"scripts":{
"pre-autoload-dump": [
"@php -r \"file_exists('.env') || copy('.env.local', '.env');\""
],
"typo3-cms-scripts": [
"typo3 install:fixfolderstructure"
],
@@ -85,9 +73,6 @@
"extra": {
"typo3/cms": {
"web-dir": "public"
},
"helhum/typo3-console": {
"install-extension-dummy": "0"
}
}
}

View File

@@ -1 +0,0 @@
console.log('WE LOVE TYPO3');