Не удается найти модуль 'dialogflow-выполнение' - PullRequest
0 голосов
/ 24 мая 2018

Когда я запускаю команду терминала 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"
  },

1 Ответ

0 голосов
/ 06 июня 2018

Я столкнулся с той же проблемой.Проблема была с моим package.json

package.json

{
  "name": "functions",
  "description": "Cloud Functions for Firebase",
  "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"
  },
  "dependencies": {
    "firebase-admin": "~5.12.1",
    "firebase-functions": "^1.0.3",
    "dialogflow-fulfillment": "^0.4.1",
    "actions-on-google": "^2.1.3"
  },
  "devDependencies": {
    "eslint": "^4.12.0",
    "eslint-plugin-promise": "^3.6.0"
  },
  "private": true
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...