Giter Site home page Giter Site logo

Comments (18)

refractalize avatar refractalize commented on June 21, 2024

Even npm cache clear doesn't help...

from deps-sort.

refractalize avatar refractalize commented on June 21, 2024

Oh, I'm running npm install browserify (I've edited the original issue)

from deps-sort.

deefour avatar deefour commented on June 21, 2024

I'm having the same problem installing cordova. It's because of the dependency change from JSONStream to jsonstream in package.json 2 hours ago.

"jsonstream": "^1.0.3",

275200e

from deps-sort.

Ferdaszewski avatar Ferdaszewski commented on June 21, 2024

Same problem here when I run npm install atomify on Mac OS X.

No compatible version found: JSONStream@'>=1.0.3 <2.0.0'

from deps-sort.

deefour avatar deefour commented on June 21, 2024

I got my install working with the following up-front

npm install [email protected]
npm install [email protected]
npm install [email protected]

These all have the same issue introduced with the JSONStream/jsonstream case conflict introduced in the last 2 hours.

from deps-sort.

callumacrae avatar callumacrae commented on June 21, 2024

Two hours ago, our build broke:

311448 verbose unlock done using /Users/callumacrae/.npm/_locks/lmn-gulp-tasks-66ed9d312946097e.lock for /Users/callumacrae/Sites/lmn/eagle/node_modules/lmn-gulp-tasks
311449 verbose stack Error: No compatible version found: JSONStream@'>=1.0.3 <2.0.0'
311449 verbose stack Valid install targets:
311449 verbose stack ["0.0.0","0.1.0","0.1.1","0.1.2","0.1.3","0.2.0","0.2.1","0.2.2","0.2.3","0.3.0","0.3.1","0.3.2","0.3.3","0.4.0","0.4.1","0.4.2","0.4.3","0.4.4","0.5.0","0.6.0","0.6.1","0.6.2","0.6.3","0.6.4","0.7.0","0.7.1","0.8.0","0.7.2","0.7.3","0.7.4","0.8.1","0.8.2","0.8.3","0.8.4","0.9.0","0.10.0"]
311449 verbose stack
311449 verbose stack     at installTargetsError (/Users/callumacrae/.nvm/versions/node/v0.12.0/lib/node_modules/npm/lib/cache/add-named.js:259:12)
311449 verbose stack     at next (/Users/callumacrae/.nvm/versions/node/v0.12.0/lib/node_modules/npm/lib/cache/add-named.js:238:17)
311449 verbose stack     at setData (/Users/callumacrae/.nvm/versions/node/v0.12.0/lib/node_modules/npm/lib/cache/add-named.js:215:5)
311449 verbose stack     at RES (/Users/callumacrae/.nvm/versions/node/v0.12.0/lib/node_modules/npm/node_modules/inflight/inflight.js:23:14)
311449 verbose stack     at f (/Users/callumacrae/.nvm/versions/node/v0.12.0/lib/node_modules/npm/node_modules/once/once.js:17:25)
311449 verbose stack     at CachingRegistryClient.get_ (/Users/callumacrae/.nvm/versions/node/v0.12.0/lib/node_modules/npm/lib/cache/caching-client.js:125:16)
311449 verbose stack     at /Users/callumacrae/.nvm/versions/node/v0.12.0/lib/node_modules/npm/lib/cache/caching-client.js:91:14
311449 verbose stack     at evalmachine.<anonymous>:336:14
311449 verbose stack     at /Users/callumacrae/.nvm/versions/node/v0.12.0/lib/node_modules/npm/node_modules/graceful-fs/graceful-fs.js:102:5
311449 verbose stack     at FSReqWrap.oncomplete (evalmachine.<anonymous>:99:15)
311450 verbose cwd /Users/callumacrae/Sites/lmn/eagle
311451 error Darwin 14.0.0
311452 error argv "/Users/callumacrae/.nvm/versions/node/v0.12.0/bin/node" "/Users/callumacrae/.nvm/versions/node/v0.12.0/bin/npm" "i"
311453 error node v0.12.0
311454 error npm  v2.5.1
311455 error code ETARGET
311456 error notarget No compatible version found: JSONStream@'>=1.0.3 <2.0.0'
311456 error notarget Valid install targets:
311456 error notarget ["0.0.0","0.1.0","0.1.1","0.1.2","0.1.3","0.2.0","0.2.1","0.2.2","0.2.3","0.3.0","0.3.1","0.3.2","0.3.3","0.4.0","0.4.1","0.4.2","0.4.3","0.4.4","0.5.0","0.6.0","0.6.1","0.6.2","0.6.3","0.6.4","0.7.0","0.7.1","0.8.0","0.7.2","0.7.3","0.7.4","0.8.1","0.8.2","0.8.3","0.8.4","0.9.0","0.10.0"]
311456 error notarget
311456 error notarget This is most likely not a problem with npm itself.
311456 error notarget In most cases you or one of your dependencies are requesting
311456 error notarget a package version that doesn't exist.
311457 verbose exit [ 1, true ]
311458 verbose unbuild node_modules/lmn.tarantula/node_modules/browserify/node_modules/deps-sort
311459 info preuninstall [email protected]
311460 info uninstall [email protected]

from deps-sort.

lxe avatar lxe commented on June 21, 2024

Yeah this broke things when installing "browserify@^9.0.8"

Basically there's no JSONStream https://github.com/substack/deps-sort/blob/master/package.json#L11' version 1.0.3. There is [email protected]. I think you meant jsonstream2. jsonstream2 should work while the npm resolution is pending.

from deps-sort.

mimiflynn avatar mimiflynn commented on June 21, 2024

I'm getting the same issue as Ixe but when installing "grunt-browserify": "~3.2.0"

from deps-sort.

dspnorman avatar dspnorman commented on June 21, 2024

Just ran into the same issue with my build:

npm ERR! notarget No compatible version found: JSONStream@'>=1.0.3 <2.0.0'

from deps-sort.

 avatar commented on June 21, 2024

This is an npm bug. It would be best if people raised these issues on npm, not here.

from deps-sort.

callumacrae avatar callumacrae commented on June 21, 2024

Please work around it until the npm bug is fixed! It was a code change here that caused the error to be thrown.

from deps-sort.

AndrewBroz avatar AndrewBroz commented on June 21, 2024

275200e

from deps-sort.

AndrewBroz avatar AndrewBroz commented on June 21, 2024

Reverting this change fully resolves the issue.

from deps-sort.

lunaroja avatar lunaroja commented on June 21, 2024

https://twitter.com/chadhietala/status/596375511800000513

from deps-sort.

AndrewBroz avatar AndrewBroz commented on June 21, 2024

Understand the npm issue (browserify/browserify#1247), but this change shouldn't have happened until it was resolved.

from deps-sort.

charlierudolph avatar charlierudolph commented on June 21, 2024

Please revert until npm resolves its issue

from deps-sort.

AndrewBroz avatar AndrewBroz commented on June 21, 2024

Resolved by 2258e66

from deps-sort.

zertosh avatar zertosh commented on June 21, 2024

This is all clear now!

from deps-sort.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.