我想将我的Ionic应用程序托管到firebase托管。现在,当我运行firebase deploy
命令时,我得到了以下错误
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! functions@ build: `tslint -p tslint.json && ./node_modules/.bin/tsc`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the functions@ build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
Error: functions predeploy command terminated with non-zero exit code1
我缺少正确的工作
答案 0 :(得分:4)
Package.json中的更改
"build": "node_modules/.bin/tslint -p tslint.json && ./node_modules/.bin/tsc"
到
"build": "node_modules/.bin/tslint -p tslint.json && tsc"
这对你有用。
答案 1 :(得分:1)
对我有用的是转到functions文件夹和'npm i typescript',将其更新为最新版本。
答案 2 :(得分:0)
在functions
文件夹内,原因可能是某些.ts
文件(index.ts
或您手动创建的其他文件)中的错误,但不会在日志中显示>