Skip to content

Commit

Permalink
fix: build pass on storybook-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jmfrancois committed Apr 16, 2024
1 parent 8307c70 commit d21d8b0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/storybook-docs/src/globalStyles.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* stylelint-disable declaration-no-important */
@use '../../node_modules/@talend/design-tokens/lib/tokens' as tokens;
@use '@talend/design-tokens/lib/tokens' as tokens;

// stylelint-disable scss/selector-no-redundant-nesting-selector
* {
Expand Down
2 changes: 1 addition & 1 deletion packages/storybook-docs/src/managerStyles.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@use '../../node_modules/@talend/design-tokens/lib/tokens' as tokens;
@use '@talend/design-tokens/lib/tokens' as tokens;

#root {
div[role='main'] {
Expand Down
5 changes: 4 additions & 1 deletion packages/storybook-docs/webpack.custom.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ module.exports = {
},
{
loader: require.resolve('sass-loader'),
options: { sourceMap: true },
options: {
sourceMap: true,
sassOptions: { includePaths: ['./node_modules', '../../node_modules'] },
},
},
],
},
Expand Down

0 comments on commit d21d8b0

Please sign in to comment.