Переменные среды Гэтсби "env.cmd not found" - PullRequest
0 голосов
/ 08 января 2020

Пытаюсь запустить env.cmd с Гэтсби, но я получаю sh: env-cmd not found. Я установил пакет. Я попытался удалить .node-modules и запустить npm install, но все равно получаю ту же ошибку.

gatsby-config. js:

{
...
  "scripts": {
    "build": "gatsby build",
    "develop": "env-cmd --file .env.development --fallback gatsby develop",
    "format": "prettier --write \"**/*.{js,jsx,json,md}\"",
    "start": "npm run develop",
    "serve": "gatsby serve",
    "clean": "gatsby clean",
    "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
  },
  "dependencies": {
    "gatsby": "^2.18.12",
    "gatsby-plugin-sass": "^2.1.26",
    "node-sass": "^4.13.0",
    "react": "^16.12.0",
    "react-dom": "^16.12.0",
    "typescript": "^3.7.4"
  },
  "devDependencies": {
    "env-cmd": "^8.0.2",
    "prettier": "^1.19.1"
  },
...
}

Терминал:

npm run develop

> gatsby-starter-hello-world@0.1.0 develop /Users/renatognunes/Documents/Studies 1:4/Gatsby/gatsby-site
> env-cmd --file .env.development --fallback gatsby develop

sh: env-cmd: command not found
npm ERR! code ELIFECYCLE
npm ERR! syscall spawn
npm ERR! file sh
npm ERR! errno ENOENT
npm ERR! gatsby-starter-hello-world@0.1.0 develop: `env-cmd --file .env.development --fallback gatsby develop`
npm ERR! spawn ENOENT
npm ERR! 
npm ERR! Failed at the gatsby-starter-hello-world@0.1.0 develop script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

ОБНОВЛЕНИЕ Для всех, кто сталкивался с той же проблемой, вот решение, которое я нашел, которое работало для меня: { ссылка }

...