Skip to content

Commit a6d4c45

Browse files
Merge branch 'release/0.3.12'
2 parents d6e2467 + cc4321a commit a6d4c45

File tree

14 files changed

+4608
-10
lines changed

14 files changed

+4608
-10
lines changed

.editorconfig-lint.php

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
/*
6+
* This file is part of the TYPO3 CMS extension "warming".
7+
*
8+
* Copyright (C) 2022 Elias Häußler <elias@haeussler.dev>
9+
*
10+
* This program is free software: you can redistribute it and/or modify
11+
* it under the terms of the GNU General Public License as published by
12+
* the Free Software Foundation, either version 2 of the License, or
13+
* (at your option) any later version.
14+
*
15+
* This program is distributed in the hope that it will be useful,
16+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
* GNU General Public License for more details.
19+
*
20+
* You should have received a copy of the GNU General Public License
21+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
22+
*/
23+
24+
return \Symfony\Component\Finder\Finder::create()
25+
->files()
26+
->in(__DIR__)
27+
->ignoreVCSIgnored(true)
28+
->exclude([
29+
'Resources/Public/JavaScript',
30+
])
31+
;

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/Tests export-ignore
44
/.crowdin.yaml export-ignore
55
/.editorconfig export-ignore
6+
/.editorconfig-lint.php export-ignore
67
/.gitattributes export-ignore
78
/.gitignore export-ignore
89
/.php-cs-fixer.php export-ignore

.github/workflows/cgl.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Lint composer.json
3838
run: composer lint:composer -- --dry-run
3939
- name: Lint Editorconfig
40-
run: .Build/bin/ec --git-only
40+
run: .Build/bin/ec --finder-config .editorconfig-lint.php
4141
- name: Lint PHP
4242
run: composer lint:php -- --dry-run
4343

Resources/Private/Frontend/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
/node_modules
2-
/yarn.lock
32
/yarn-error.log

Resources/Private/Frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@eliashaeussler/typo3-warming",
33
"description": "Frontend for EXT:warming, an extension for TYPO3 CMS that warms up Frontend caches based on an XML sitemap",
4-
"version": "0.3.11",
4+
"version": "0.3.12",
55
"license": "GPL-2.0-or-later",
66
"scripts": {
77
"build": "cross-env NODE_ENV=production webpack",

Resources/Private/Frontend/yarn.lock

Lines changed: 4566 additions & 0 deletions
Large diffs are not rendered by default.

Resources/Public/JavaScript/Backend/ContextMenu/CacheWarmupContextMenuAction.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Resources/Public/JavaScript/Backend/Modal/CacheWarmupProgressModal.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Resources/Public/JavaScript/Backend/Modal/CacheWarmupReportModal.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Resources/Public/JavaScript/Backend/Toolbar/CacheWarmupMenu.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)