From 6031f0dbdd7ca87e69d8a2967d8225d08f42834d Mon Sep 17 00:00:00 2001 From: Darko Gjorgjijoski <5760249+gdarko@users.noreply.github.com> Date: Sun, 12 Jan 2025 10:49:04 +0100 Subject: [PATCH] Module paths (#268) * refactor: Update file paths for stub files for module creation (#144) --------- Co-authored-by: Dominik Hendrix * Revert unrelated change --------- Co-authored-by: Dominik Hendrix Co-authored-by: Dominik Hendrix --- config/modules.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/modules.php b/config/modules.php index 9e81b9e0..2376ff0e 100644 --- a/config/modules.php +++ b/config/modules.php @@ -39,8 +39,8 @@ return [ 'resources/sass/module' => 'Resources/sass/module.scss', 'resources/scripts/stores/sample-store' => 'Resources/scripts/stores/sample-store.js', 'resources/scripts/views/SamplePage' => 'Resources/scripts/views/SamplePage.vue', - 'lang/en' => 'Lang/en.json', - 'lang/locales' => 'Lang/locales.js', + 'resources/locales/en' => 'Resources/locales/en.json', + 'resources/locales/locales' => 'Resources/locales/locales.js', 'package' => 'package.json', 'postcss.config' => 'postcss.config.js', 'tailwind.config' => 'tailwind.config.js', @@ -63,8 +63,8 @@ return [ 'MODULE_NAMESPACE', 'PROVIDER_NAMESPACE', ], - 'assets/scripts/module' => ['LOWER_NAME'], - 'assets/scripts/stores/sample-store' => ['LOWER_NAME'], + 'resources/scripts/module' => ['LOWER_NAME'], + 'resources/scripts/stores/sample-store' => ['LOWER_NAME'], 'vite.config' => ['LOWER_NAME'], ], 'gitkeep' => true,