Hi all, I was facing issue with running theme loca...
# suitecommerce
p
Hi all, I was facing issue with running theme locally. Make changes on override sass file will break the local. It was throwing this
Copy code
Message:
  shopping.scss
Error: File to import not found or unreadable: tmp/PaperplaneTheme/Modules/Shopping/shopping.
    on line 1 of shopping.scss
Import was referring to tmp folder which was automatically get deleted by clean-sass-tmp task in local. So I have commented that. Does anyone have idea why this may be happening and know better way to address this issue?
Copy code
gulp.task('clean-sass-tmp', (cb) => {
    // shell.rm('-rf', 'tmp');
    cb();
});
i have commented this line