diff --git a/README.md b/README.md index 2d82d47..c555a8d 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,7 @@ export default preview; | folder | `callback` | logic to find you Storybook stories folder, adjust if needed | | stories.json | `callback` | if KQL exists allow loading from json files | | stories.yml | `true` | allow loading from yml files | -| stories.ignore | `[]` | array of string, if matches any file will not be rendered | +| stories.ignore | `[...]` | array of string, if matches any file will not be rendered | ## Dependencies diff --git a/composer.json b/composer.json index 144bceb..24dbec1 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "bnomei/kirby3-storybook", "type": "kirby-plugin", - "version": "2.0.0", + "version": "2.0.1", "license": "MIT", "description": "Kirby Plugin to generate Storybook stories from PHP snippets and templates", "authors": [ diff --git a/index.php b/index.php index 87e7f44..471d599 100644 --- a/index.php +++ b/index.php @@ -28,7 +28,11 @@ 'stories' => [ 'json' => fn () => class_exists('Kirby\Kql\Kql'), 'yml' => true, - 'ignore' => [], + 'ignore' => [ + 'vendor', + 'site/plugins/kirby3-feed', + 'site/plugins/kirby3-htmlhead', + ], ], ], 'commands' => [ // https://github.com/getkirby/cli diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index f43cc81..07db191 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -1,8 +1,8 @@ array( 'name' => 'bnomei/kirby3-storybook', - 'pretty_version' => '2.0.0', - 'version' => '2.0.0.0', + 'pretty_version' => '2.0.1', + 'version' => '2.0.1.0', 'reference' => null, 'type' => 'kirby-plugin', 'install_path' => __DIR__ . '/../../', @@ -11,8 +11,8 @@ ), 'versions' => array( 'bnomei/kirby3-storybook' => array( - 'pretty_version' => '2.0.0', - 'version' => '2.0.0.0', + 'pretty_version' => '2.0.1', + 'version' => '2.0.1.0', 'reference' => null, 'type' => 'kirby-plugin', 'install_path' => __DIR__ . '/../../',