`firebase deploy`ing Google 智能家居代码实验室操作时出错
Error when `firebase deploy`ing Google Smart Home codelab action
我正试图关注 https://codelabs.developers.google.com/codelabs/smarthome-washer/#2
但是我在第 3 步 firebase 部署 卡住了。
第一个错误:
Error: package.json in functions directory has an engines field which is unsupported. The only valid choices are: {"node": "8"} and {"node": "6"}.
在我将 package.json 文件更改为使用 "node":"8" 后,出现以下错误:
Error: Error occurred while parsing your function triggers.
TypeError: Cannot read property 'databaseURL' of undefined
at RepoManager.databaseFromApp (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/database/dist/index.node.cjs.js:14985:39)
at Object.instance.INTERNAL.registerService.Reference [as database] (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/database/dist/index.node.cjs.js:15526:130)
at FirebaseAppImpl._getService (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/app/dist/index.cjs.js:134:66)
at FirebaseAppImpl.(anonymous function) [as database] (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/app/dist/index.cjs.js:323:31)
at Object.serviceNamespace [as database] (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/app/dist/index.cjs.js:308:32)
at Object.<anonymous> (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/index.js:28:30)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
Having trouble? Try firebase deploy --help
我该怎么办?或者有人知道任何其他资源来学习构建 google 家庭活动吗?
当我在 package.json.
安装了完全提到的依赖项后,我终于能够部署了
我将 package.json 从 -
更改为
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"engines": {
"node": ">=6.11.1"
},
"dependencies": {
"actions-on-google": "^2.1.0",
"cors": "^2.8.4",
"firebase": "^4.0.0",
"firebase-admin": "^5.8.1",
"firebase-functions": "^0.8.1",
"google-auth-library": "^0.10.0",
"googleapis": "^27.0.0"
},
"private": true,
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1"
}
}
到-
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"engines": {
"node": ">=6.11.1"
},
"dependencies": {
"actions-on-google": "2.1.0",
"cors": "2.8.4",
"firebase": "4.0.0",
"firebase-admin": "5.8.1",
"firebase-functions": "0.8.1",
"google-auth-library": "0.10.0",
"googleapis": "27.0.0"
},
"private": true,
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-google": "0.9.1"
}
}
将所有“^2.1.0”更改为“2.1.0”
我正试图关注 https://codelabs.developers.google.com/codelabs/smarthome-washer/#2
但是我在第 3 步 firebase 部署 卡住了。
第一个错误:
Error: package.json in functions directory has an engines field which is unsupported. The only valid choices are: {"node": "8"} and {"node": "6"}.
在我将 package.json 文件更改为使用 "node":"8" 后,出现以下错误:
Error: Error occurred while parsing your function triggers.
TypeError: Cannot read property 'databaseURL' of undefined
at RepoManager.databaseFromApp (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/database/dist/index.node.cjs.js:14985:39)
at Object.instance.INTERNAL.registerService.Reference [as database] (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/database/dist/index.node.cjs.js:15526:130)
at FirebaseAppImpl._getService (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/app/dist/index.cjs.js:134:66)
at FirebaseAppImpl.(anonymous function) [as database] (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/app/dist/index.cjs.js:323:31)
at Object.serviceNamespace [as database] (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/node_modules/@firebase/app/dist/index.cjs.js:308:32)
at Object.<anonymous> (/Users/prafulll/code/personal/direkshanProjects/googleAssistant/smarthome-washer/washer-start/functions/index.js:28:30)
at Module._compile (module.js:652:30)
at Object.Module._extensions..js (module.js:663:10)
at Module.load (module.js:565:32)
at tryModuleLoad (module.js:505:12)
Having trouble? Try firebase deploy --help
我该怎么办?或者有人知道任何其他资源来学习构建 google 家庭活动吗?
当我在 package.json.
安装了完全提到的依赖项后,我终于能够部署了我将 package.json 从 -
更改为{
"name": "functions",
"description": "Cloud Functions for Firebase",
"engines": {
"node": ">=6.11.1"
},
"dependencies": {
"actions-on-google": "^2.1.0",
"cors": "^2.8.4",
"firebase": "^4.0.0",
"firebase-admin": "^5.8.1",
"firebase-functions": "^0.8.1",
"google-auth-library": "^0.10.0",
"googleapis": "^27.0.0"
},
"private": true,
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1"
}
}
到-
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"engines": {
"node": ">=6.11.1"
},
"dependencies": {
"actions-on-google": "2.1.0",
"cors": "2.8.4",
"firebase": "4.0.0",
"firebase-admin": "5.8.1",
"firebase-functions": "0.8.1",
"google-auth-library": "0.10.0",
"googleapis": "27.0.0"
},
"private": true,
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-google": "0.9.1"
}
}
将所有“^2.1.0”更改为“2.1.0”