Skip to content

Commit 12539df

Browse files
committed
ref: use Phel::bootstrap instead of Gacela
1 parent e2cbd6e commit 12539df

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

build/api-search.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44

55
require __DIR__ . '/../vendor/autoload.php';
66

7-
use Gacela\Framework\Gacela;
87
use Phel\Phel;
98
use PhelWeb\ApiGenerator\Facade as FileGeneratorFacade;
109

11-
Gacela::bootstrap(__DIR__, Phel::configFn());
10+
Phel::bootstrap(__DIR__);
1211

1312
$facade = new FileGeneratorFacade();
1413
$facade->generateApiSearchFile();

build/generate-releases.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44

55
require __DIR__ . '/../vendor/autoload.php';
66

7-
use Gacela\Framework\Gacela;
87
use Phel\Phel;
98
use PhelWeb\ReleasesGenerator\Facade as ReleasesGeneratorFacade;
109

11-
Gacela::bootstrap(__DIR__, Phel::configFn());
10+
Phel::bootstrap(__DIR__);
1211

1312
$facade = new ReleasesGeneratorFacade();
1413
$facade->generateIndividualReleasePages();

build/update-phel-version.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44

55
require __DIR__ . '/../vendor/autoload.php';
66

7-
use Gacela\Framework\Gacela;
87
use Phel\Phel;
98
use PhelWeb\VersionUpdater\Facade as VersionUpdaterFacade;
109

11-
Gacela::bootstrap(__DIR__, Phel::configFn());
10+
Phel::bootstrap(__DIR__);
1211

1312
$facade = new VersionUpdaterFacade();
1413
$facade->updateTomlFile();

0 commit comments

Comments
 (0)