stylus / nib

Stylus mixins, utilities, components, and gradient image generation
http://stylus.github.io/nib
MIT License
1.91k stars 249 forks source link

Release 1.1.3 with stylus dependency fixed #354

Closed dresende closed 2 years ago

dresende commented 2 years ago

@notslang released 1.1.2 on 27 Oct 2021 but this version has 5 years and dependency on stylus is broken.

I get a lot of errors that trace back to stylus dependency (0.54.5) inside nib, but if I force this dependency in shrinkwrap to 0.55.0 this disappears, so it's nothing with nib, just package.json (the one published by nib) that needs an update. On master branch, this has already been fixed, just need to be released in a new version.

/cc @tj

mapxn commented 2 years ago

This project looks like no one has maintained it.

dresende commented 2 years ago

Opened discussion here

dresende commented 2 years ago

Resolved this on npm 8 with this section on package.json:

"overrides" : {
    "nib" : {
        "stylus" : "$stylus"
    }
}

This instructs npm to override nib dependency called stylus to use the same version of stylus I'm using directly on package.json. You can replace $stylus with a specific version or range.