Skip to content

Commit

Permalink
fix(grid-cdn): add path to root node_modules
Browse files Browse the repository at this point in the history
  • Loading branch information
annawen1 committed Mar 15, 2024
1 parent 630cd10 commit bbb4ca2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/carbon-web-components/gulp-tasks/build/sass-cdn.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license
*
* Copyright IBM Corp. 2020, 2022
* Copyright IBM Corp. 2020, 2024
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
Expand All @@ -23,7 +23,7 @@ function _buildGrid() {
.src([`${config.srcDir}/globals/scss/grid.scss`])
.pipe(
sass({
includePaths: ['node_modules'],
includePaths: ['node_modules', '../../node_modules'],
outputStyle: 'compressed',
}).on('error', sass.logError)
)
Expand All @@ -40,7 +40,7 @@ function _buildCSSGrid() {
.src([`${config.srcDir}/globals/scss/cssgrid.scss`])
.pipe(
sass({
includePaths: ['node_modules'],
includePaths: ['node_modules', '../../node_modules'],
outputStyle: 'compressed',
}).on('error', sass.logError)
)
Expand Down

0 comments on commit bbb4ca2

Please sign in to comment.