28

我最近遇到了 firebase deploy 命令的问题。在 firebase deploy 命令之后,除了 firebase(存储、数据库等)之外,所有其他的都被部署了所以我决定重新安装 firebase 来解决这个问题,但是重新安装后我的问题变得更大了。现在它们都没有部署并出现以下错误:

i deploying database, functions
Running command: npm --prefix $RESOURCE_DIR run lint
npm ERR! path C:\Users\faruk\Google Drive\Android\firebase\1\$RESOURCE_DIR\package.json
npm ERR! code ENOENT
npm ERR! errno -4058
npm ERR! syscall open
npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\faruk\Google Drive\Android\firebase\1\$RESOURCE_DIR\package.json'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\faruk\AppData\Roaming\npm-cache\_logs\2018-01-24T18_21_34_878Z-debug.log

Error: functions predeploy error: Command terminated with non-zero exit code4294963238

经过一番研究,我看到了一些关于这个的话题,建议改变

$RESOURCE_DIR to %RESOURCE_DIR%

在 Windows 系统中(我正在使用 Windows 10 顺便说一句)。因此,我编辑了 位于函数文件夹上一层的firebase.json文件。像这样。(我不知道这是否是我应该编辑的正确文件)

  "database": {
    "rules": "database.rules.json"
  },
  "functions": {
    "predeploy": [
      "npm --prefix %RESOURCE_DIR% run lint"
    ]
  }
}

但在此编辑之后,我开始收到另一条这样的错误消息。

i  deploying database, functions
Running command: npm --prefix %RESOURCE_DIR% run lint

Usage: npm <command>

where <command> is one of:
    access, adduser, bin, bugs, c, cache, completion, config,
    ddp, dedupe, deprecate, dist-tag, docs, doctor, edit,
    explore, get, help, help-search, i, init, install,
    install-test, it, link, list, ln, login, logout, ls,
    outdated, owner, pack, ping, prefix, profile, prune,
    publish, rb, rebuild, repo, restart, root, run, run-script,
    s, se, search, set, shrinkwrap, star, stars, start, stop, t,
    team, test, token, tst, un, uninstall, unpublish, unstar,
    up, update, v, version, view, whoami

npm <command> -h     quick help on <command>
npm -l           display full usage info
npm help <term>  search for help on <term>
npm help npm     involved overview

Specify configs in the ini-formatted file:
    C:\Users\faruk\.npmrc
or on the command line via: npm <command> --key value
Config info can be viewed via: npm help config

npm@5.6.0 C:\Program Files\nodejs\node_modules\npm

Error: functions predeploy error: Command terminated with non-zero exit code1

任何建议表示赞赏。提前致谢。

4

12 回答 12

45

该错误源于您在项目路径(“Google Drive”)的某处有一个空间:

C:\Users\faruk\Google Drive\Android\firebase\1\$RESOURCE_DIR\package.json

不幸的是,这会混淆 npm 命令行,并且它会将其视为由该空格分隔的两个参数。

通常,我希望能够在整个事物周围加上引号,以防止空间被这样解释。所以我尝试了这个:

"predeploy": [
  "npm --prefix \"%RESOURCE_DIR%\" run lint"
]

它对我有用。

我将在内部与 Firebase 团队跟进此问题,以及需要为 Windows 进行更改的事实。

于 2018-01-24T19:34:49.163 回答
20

实际发生的是在 Windows 中,firebase.json默认情况下包含以下内容:

"predeploy": [
  "npm --prefix \"$RESOURCE_DIR\" run lint"
]

将其修改为:

"predeploy": [
  "npm --prefix \"%RESOURCE_DIR%\" run lint"
]

它对我有用,希望它对你有用。

于 2018-07-01T08:52:07.647 回答
16

"predeploy": [ "npm --prefix \"$RESOURCE_DIR\" run lint" ]

我最终在 firebase.json 上删除了它,它再次开始部署

于 2019-01-28T14:07:41.853 回答
3

在 firebase.json 中将 $RESOURCE_DIR 更改为 %RESOURCE_DIR% 后,这对我有用

{
  "functions": {
    "predeploy": [
      "npm --prefix \"%RESOURCE_DIR%\" run lint",
      "npm --prefix \"%RESOURCE_DIR%\" run build"
    ]
  }
}
于 2018-10-18T09:45:41.360 回答
3

对我来说,以上都不起作用。最初,在全新的 firebase-function 安装中,我在non-zero exit code2. 所以我删除了函数目录,重新安装,但是在函数目录配置步骤中,我选择对 add-lint 步骤说“不”。

一旦我选择不包括 lint,我就会得到 error non-zero exit code1

从那里检查了我的 firebase.json 文件并查看了预部署脚本。因为此时部署过程失败了,所以这是我开始的地方。我的 firebase.json 文件如下所示:

{
    "functions": {
        "predeploy": [ "npm --prefix \"$RESOURCE_DIR\" run lint" ]
    }
}

出于某种原因,我直觉地认为要删除lint预部署脚本中的 。这解决了一切。顺便说一句,我在 MacOS 上..

于 2020-02-25T04:30:05.973 回答
1

我在 Windows 中遇到了同样的问题。我所做的是复制了函数文件夹中的所有文件并将其传递到%RESOURCE_DIR%文件夹,然后运行 ​​Firebase 部署并成功部署。

于 2018-06-24T20:59:21.420 回答
1

functions项目运行的文件夹内npm install。也许您正在导入一个或多个index.ts未安装的节点模块,在这种情况下您需要运行npm install module_not_installed_yet --save

于 2019-04-05T15:57:04.647 回答
0

对我来说,问题是(我想)因为firebase找不到脚本。

没用:

{
  "hosting": {
    "predeploy": "predeploy.sh",
    ...
}
Running command: predeploy.sh
events.js:160
      throw er; // Unhandled 'error' event
      ^

Error: spawn predeploy.sh ENOENT
    at exports._errnoException (util.js:1020:11)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:193:32)
    at onErrorNT (internal/child_process.js:367:16)
    at _combinedTickCallback (internal/process/next_tick.js:80:11)
    at process._tickCallback (internal/process/next_tick.js:104:9)
    at Module.runMain (module.js:606:11)
    at run (bootstrap_node.js:389:7)
    at startup (bootstrap_node.js:149:9)
    at bootstrap_node.js:504:3

Error: hosting predeploy error: Command terminated with non-zero exit code1

是否工作:(注意./

{
  "hosting": {
    "predeploy": "./predeploy.sh",
    ...
}
于 2018-03-12T03:25:47.947 回答
0

使用 VS 代码时,打开Firecast的文件夹(这有助于打开资源目录的 firebase.json)在firebase.json中将文件代码更改为:

{
  "functions": {
    "predeploy": [
      "npm --prefix \"%RESOURCE_DIR%\" run lint",
      "npm --prefix \"%RESOURCE_DIR%\" run build"
    ]
  }
}

于 2018-12-23T18:31:53.340 回答
0

就我而言,我创建了一个打印日志的函数,如下所示:

function log(tag: string, value: any) {
    console.log(tag, JSON.stringify(value));
}

当我async在它前面添加时,它开始爆炸构建:)

于 2019-03-17T02:00:39.170 回答
0

我修好了:你必须注意另一个地方

看到错误描述了吗

$ firebase deploy --only functions

=== Deploying to 'fix-firebase-functions'...

i  deploying functions
Running command: npm --prefix "$RESOURCE_DIR" run lint

> functions@ lint C:\Users\vuduc\OneDrive\Tài liệu\Code tutotial         practice\test\functions
> eslint .


C:\Users\vuduc\OneDrive\Tài liệu\Code tutotial practice\test\functions\index.js
  37:16  warning  Avoid nesting promises                      promise/no-nesting
  42:13  error    Expected catch() or return                  promise/catch-or-return
  42:13  warning  Avoid nesting promises                      promise/no-nesting
  42:31  error    Each then() should return a value or throw  promise/always-return

✖ 4 problems (2 errors, 2 warnings)

npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! functions@ lint: `eslint .`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the functions@ lint script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\vuduc\AppData\Roaming\npm-cache\_logs\2020-06-01T14_38_16_060Z-debug.log
events.js:287
    throw er; // Unhandled 'error' event
      ^

Error: spawn npm --prefix "%RESOURCE_DIR%" run lint ENOENT
    at notFoundError (C:\Users\vuduc\AppData\Local\Yarn\Data\global\node_modules\cross-env\node_modules\cross-spawn\lib\enoent.js:6:26)
    at verifyENOENT (C:\Users\vuduc\AppData\Local\Yarn\Data\global\node_modules\cross-env\node_modules\cross-spawn\lib\enoent.js:40:16)
    at ChildProcess.cp.emit (C:\Users\vuduc\AppData\Local\Yarn\Data\global\node_modules\cross-env\node_modules\cross-spawn\lib\enoent.js:27:25)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:275:12)
Emitted 'error' event on ChildProcess instance at:
    at ChildProcess.cp.emit (C:\Users\vuduc\AppData\Local\Yarn\Data\global\node_modules\cross-env\node_modules\cross-spawn\lib\enoent.js:30:37)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:275:12)         

  code: 'ENOENT',
  errno: 'ENOENT',
  syscall: 'spawn npm --prefix "%RESOURCE_DIR%" run lint',
  path: 'npm --prefix "%RESOURCE_DIR%" run lint',
  spawnargs: []


Error: functions predeploy error: Command terminated with non-zero exit code1

错误部署云功能 您需要向上滚动才能看到错误描述,该行

functions predeploy error: Command terminated with non-zero exit code1

只是一个一般性的描述,在部署之前有一个错误需要修复。这才是真正需要注意的地方,你需要修复哪些指令?

✖ 4 problems (2 errors, 2 warnings)

注意这里

于 2020-06-01T15:10:00.000 回答
0

我通过重新启动 firebase init 来解决这个问题,然后不选择使用 eslint。之后部署工作。

于 2021-12-13T04:24:16.873 回答