Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 8.0.0 #394

Closed
wants to merge 23 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e64f250
updating helpers from the PR suggestions
iruzevic Apr 26, 2024
8bc56a1
updating helpers from the PR suggestions
iruzevic Apr 26, 2024
bdf8df6
updating helpers from the PR suggestions
iruzevic Apr 26, 2024
d100cab
updating helpers from the PR suggestions
iruzevic Apr 27, 2024
344b935
updating helpers from the PR suggestions
iruzevic Apr 27, 2024
af17312
updating helpers from the PR suggestions
iruzevic Apr 27, 2024
dd9acd1
updating helpers from the PR suggestions
iruzevic Apr 27, 2024
d994072
updating helpers from the PR suggestions
iruzevic Apr 28, 2024
5f9bf39
updating helpers from the PR suggestions
iruzevic Apr 28, 2024
f641b4c
updating helpers from the PR suggestions
iruzevic Apr 28, 2024
eaf0d48
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
7a5813e
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
2d1b5ee
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
f970ac3
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
127a14d
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
0c00946
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
9122de6
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
f5500c7
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
d489b0a
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
ad19c16
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
4d751c4
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
6a1fc46
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
8a82293
updating helpers from the PR suggestions
iruzevic Apr 29, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
296 changes: 143 additions & 153 deletions src/Blocks/AbstractBlocks.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/Blocks/AbstractBlocksCli.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ static function ($item) use ($sep) {
*/
private function outputDependencyItems(string $source, string $type): void
{
$manifest = Components::getManifestDirect($source);
$manifest = $this->getManifestDirect($source);

// Component dependency.
$componentsDependencies = $manifest['components'] ?? [];
Expand Down Expand Up @@ -272,7 +272,7 @@ private function outputDependencyItems(string $source, string $type): void
*/
private function outputNodeModuleDependencyItems(string $source, string $type): void
{
$manifest = Components::getManifestDirect($source);
$manifest = $this->getManifestDirect($source);

// Node_module dependency.
$nodeDependencies = $manifest['nodeDependency'] ?? [];
Expand Down