Skip to content
This repository has been archived by the owner on Mar 14, 2022. It is now read-only.

Commit

Permalink
Pass ignoreBower flag through from demo to sass
Browse files Browse the repository at this point in the history
  • Loading branch information
chee authored and JakeChampion committed Apr 21, 2020
1 parent 044b02c commit 6c7c185
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/tasks/demo-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ function buildDemoSass(buildConfig) {
sourcemaps: true,
buildCss: path.basename(buildConfig.demo.sass).replace('.scss', '.css'),
buildFolder: dest,
ignoreBower: buildConfig.ignoreBower,
cwd: buildConfig.cwd,
brand: buildConfig.brand,
verbose: buildConfig.verbose
Expand All @@ -70,7 +71,8 @@ function buildDemoJs(buildConfig) {
const jsConfig = {
js: src,
buildFolder: destFolder,
buildJs: dest
buildJs: dest,
ignoreBower: buildConfig.ignoreBower
};

return buildJs(jsConfig);
Expand Down

0 comments on commit 6c7c185

Please sign in to comment.