Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removal of older versions of ecstatic is causing npm install to fail #49

Closed
hansenms opened this issue May 3, 2019 · 0 comments · Fixed by #50
Closed

Removal of older versions of ecstatic is causing npm install to fail #49

hansenms opened this issue May 3, 2019 · 0 comments · Fixed by #50

Comments

@hansenms
Copy link
Contributor

hansenms commented May 3, 2019

The growth chart app depends on http-server 0.9.0, which depends on ecstatic <= 2.0. When cloning and doing npm install:

npm install
npm ERR! code ETARGET
npm ERR! notarget No matching version found for ecstatic@^1.4.0
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! notarget
npm ERR! notarget It was specified as a dependency of 'http-server'
npm ERR! notarget

Changing the http-server version:

{
  "name": "growthchart",
  "version": "0.1.3",
  "scripts": {
    "serve": "./node_modules/http-server/bin/http-server -p 9000 -c-1 .",
    "start": "npm run serve"
  },
  "dependencies": {
    "eslint": "^3.9.1",
    "fhirclient": "^0.1.9"
  },
  "devDependencies": {
    "http-server": "^0.10.0"
  }
}

appears to fix it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant