From 30278ff97cc0647a0bede18e0c0730a62f2a1b21 Mon Sep 17 00:00:00 2001 From: Ido Rosenthal Date: Thu, 23 May 2024 21:07:07 +0300 Subject: [PATCH] fix: take alias * out of join --- fixtures/demo/stylable.config.js | 2 +- fixtures/latest/stylable.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fixtures/demo/stylable.config.js b/fixtures/demo/stylable.config.js index a72a9af2..9625f225 100644 --- a/fixtures/demo/stylable.config.js +++ b/fixtures/demo/stylable.config.js @@ -10,7 +10,7 @@ module.exports = { resolveModule: createDefaultResolver({ fs, alias: { - 'comps/*': join(__dirname, 'alias-components/*'), + 'comps/*': join(__dirname, 'alias-components') + '/*', }, }), }; diff --git a/fixtures/latest/stylable.config.js b/fixtures/latest/stylable.config.js index 2163c95c..933b065b 100644 --- a/fixtures/latest/stylable.config.js +++ b/fixtures/latest/stylable.config.js @@ -8,7 +8,7 @@ module.exports = { resolveModule: createDefaultResolver({ fs, alias: { - 'comps/*': join(__dirname, 'alias-components/*'), + 'comps/*': join(__dirname, 'alias-components') + '/*', }, }), };