Когда я запускаю команду терминала firebase deploy --only functions
, после небольшой обработки мой терминал скажет:
Error parsing triggers: Cannot find module 'dialogflow-fulfillment'
Try running npm-install in your functions directory before deploying.
Я запустил npm-install
в каталоге функций, но мне не повезло в полученииэто работает.
Я видел подобный вопрос здесь и добавил строку зависимости в моем package.json
, но я все еще получаю ту же ошибку.
Мой index.js выглядит следующим образом:
'use strict';
const functions = require('firebase-functions');
const {WebhookClient} = require('dialogflow-fulfillment');
//const {Card, Suggestion} = require('dialogflow-fulfillment');
process.env.DEBUG = 'dialogflow:debug'; // enables lib debugging statements
и мой package.json
выглядит так
{
"name": "dialogflowFirebaseFulfillment",
"description": "This is the default fulfillment for a Dialogflow agents using Cloud Functions for Firebase",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"scripts": {
"lint": "eslint .",
"serve": "firebase serve --only functions",
"shell": "firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "~6.0"
},
"dependencies": {
"firebase-admin": "^5.12.0",
"firebase-functions": "^1.0.1",
"actions-on-google": "2.0.0-alpha.3",
"dialogflow": "^0.1.0",
"dialogflow-fulfillment": "0.3.0-beta.2"
},