Deno for SASS dependencies?
I'm trying to understand how I would migrate from Jekyll and NPM to Lume and Deno. Specifically, I used NPM to install some dependencies:
I would then instruct Jekyll to include
I'm not sure what the approach would be for Deno. Since these aren't libraries I'm actually using within my code, it seems inappropriate to stick them inside import maps. Would the solution be to use
I would then instruct Jekyll to include
node_modules when attempting to resolve SCSS filepaths.I'm not sure what the approach would be for Deno. Since these aren't libraries I'm actually using within my code, it seems inappropriate to stick them inside import maps. Would the solution be to use
package.json and install using NPM as normal, or is there a better way to handle these SASS frameworks?