When trying to compile bundles without any css source
node-sass throws the following error and it stops the rollup build:
"No input specified: provide a file name or a source string to process"
To prevent that error when not needed, I added an option called ignoreEmpty
which will skip the node-sass process when it is true and the css source it empty.
When trying to compile bundles without any css source node-sass throws the following error and it stops the rollup build: "No input specified: provide a file name or a source string to process"
To prevent that error when not needed, I added an option called ignoreEmpty which will skip the node-sass process when it is true and the css source it empty.