wauterboiW
Denoβ€’3y agoβ€’
2 replies
wauterboi

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:

{
  "dependencies": {
    "breakpoint-sass": "^3.0.0",
    "normalize-scss": "^7.0.1"
  }
}


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?
Was this page helpful?