Skip to content

Commit

Permalink
fix: take alias * out of join
Browse files Browse the repository at this point in the history
  • Loading branch information
idoros committed May 23, 2024
1 parent be12280 commit 30278ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fixtures/demo/stylable.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
resolveModule: createDefaultResolver({
fs,
alias: {
'comps/*': join(__dirname, 'alias-components/*'),
'comps/*': join(__dirname, 'alias-components') + '/*',
},
}),
};
Expand Down
2 changes: 1 addition & 1 deletion fixtures/latest/stylable.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module.exports = {
resolveModule: createDefaultResolver({
fs,
alias: {
'comps/*': join(__dirname, 'alias-components/*'),
'comps/*': join(__dirname, 'alias-components') + '/*',
},
}),
};
Expand Down

0 comments on commit 30278ff

Please sign in to comment.