Skip to content

Commit bf2f3b8

Browse files
Remove releases from "blog" entries
1 parent 92457ee commit bf2f3b8

File tree

78 files changed

+25
-1815
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+25
-1815
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,6 @@ content/documentation/api.md
2121
/css/tailwind.entry.css
2222
/static/syntax-theme-dark.css
2323
/static/syntax-theme-light.css
24+
25+
/content/releases/*
26+
!/content/releases/_index.md

build/generate-releases.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@
1111
Gacela::bootstrap(__DIR__, Phel::configFn());
1212

1313
$facade = new ReleasesGeneratorFacade();
14-
$facade->generateIndexReleasePage();
1514
$facade->generateIndividualReleasePages();

build/src/php/FileGenerator/Application/ApiMarkdownGenerator.php renamed to build/src/php/ApiGenerator/Application/ApiMarkdownGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace PhelWeb\FileGenerator\Application;
5+
namespace PhelWeb\ApiGenerator\Application;
66

77
use Phel\Api\Transfer\PhelFunction;
88
use Phel\Shared\Facade\ApiFacadeInterface;

build/src/php/FileGenerator/Application/ApiSearchGenerator.php renamed to build/src/php/ApiGenerator/Application/ApiSearchGenerator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace PhelWeb\FileGenerator\Application;
5+
namespace PhelWeb\ApiGenerator\Application;
66

77
use Phel\Shared\Facade\ApiFacadeInterface;
88

build/src/php/FileGenerator/DependencyProvider.php renamed to build/src/php/ApiGenerator/DependencyProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace PhelWeb\FileGenerator;
5+
namespace PhelWeb\ApiGenerator;
66

77
use Gacela\Framework\AbstractProvider;
88
use Gacela\Framework\Container\Container;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace PhelWeb\FileGenerator;
5+
namespace PhelWeb\ApiGenerator;
66

77
use Gacela\Framework\AbstractFacade;
88

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
declare(strict_types=1);
44

5-
namespace PhelWeb\FileGenerator;
5+
namespace PhelWeb\ApiGenerator;
66

77
use Gacela\Framework\AbstractFactory;
88
use Gacela\Framework\Config\Config;
99
use Phel\Shared\Facade\ApiFacadeInterface;
10-
use PhelWeb\FileGenerator\Application\ApiMarkdownGenerator;
11-
use PhelWeb\FileGenerator\Application\ApiSearchGenerator;
12-
use PhelWeb\FileGenerator\Infrastructure\ApiMarkdownFile;
13-
use PhelWeb\FileGenerator\Infrastructure\ApiSearchFile;
10+
use PhelWeb\ApiGenerator\Application\ApiMarkdownGenerator;
11+
use PhelWeb\ApiGenerator\Application\ApiSearchGenerator;
12+
use PhelWeb\ApiGenerator\Infrastructure\ApiMarkdownFile;
13+
use PhelWeb\ApiGenerator\Infrastructure\ApiSearchFile;
1414

1515
/**
1616
* @method Config getConfig()

build/src/php/FileGenerator/Infrastructure/ApiMarkdownFile.php renamed to build/src/php/ApiGenerator/Infrastructure/ApiMarkdownFile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
declare(strict_types=1);
44

5-
namespace PhelWeb\FileGenerator\Infrastructure;
5+
namespace PhelWeb\ApiGenerator\Infrastructure;
66

7-
use PhelWeb\FileGenerator\Application\ApiMarkdownGenerator;
7+
use PhelWeb\ApiGenerator\Application\ApiMarkdownGenerator;
88

99
final readonly class ApiMarkdownFile
1010
{

build/src/php/FileGenerator/Infrastructure/ApiSearchFile.php renamed to build/src/php/ApiGenerator/Infrastructure/ApiSearchFile.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
declare(strict_types=1);
44

5-
namespace PhelWeb\FileGenerator\Infrastructure;
5+
namespace PhelWeb\ApiGenerator\Infrastructure;
66

7-
use PhelWeb\FileGenerator\Application\ApiSearchGenerator;
7+
use PhelWeb\ApiGenerator\Application\ApiSearchGenerator;
88

99
use function json_encode;
1010

build/src/php/ReleasesGenerator/Application/GitHubIndexReleaseGenerator.php

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)