From cda318317c8dda3f3883ce3457bcf774b54358d9 Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Tue, 17 Oct 2023 21:56:35 -0400 Subject: [PATCH 1/2] - WIP on asset --- meta/definitions.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/meta/definitions.php b/meta/definitions.php index 5f7ad7d..e6e8116 100644 --- a/meta/definitions.php +++ b/meta/definitions.php @@ -6,12 +6,10 @@ return [ 'assets.normalize-css' => [ 'picea' => [ 'asset' => [ - 'source' => [ - [ - 'path' => implode(DIRECTORY_SEPARATOR, [ $path, "asset", '' ]), - 'order' => 10 - ] - ], + [ + 'path' => implode(DIRECTORY_SEPARATOR, [ $path, "asset", '' ]), + 'order' => 10 + ] ] ], ], From 40cfd2908a29dfc430262a201b99ef185342c24e Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Tue, 17 Oct 2023 22:53:02 -0400 Subject: [PATCH 2/2] - Fixed definition directory --- meta/definitions.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/meta/definitions.php b/meta/definitions.php index e6e8116..55176b6 100644 --- a/meta/definitions.php +++ b/meta/definitions.php @@ -1,13 +1,11 @@ [ 'picea' => [ 'asset' => [ [ - 'path' => implode(DIRECTORY_SEPARATOR, [ $path, "asset", '' ]), + 'path' => implode(DIRECTORY_SEPARATOR, [ dirname(__DIR__), "asset", '' ]), 'order' => 10 ] ]