From ec96638d8bab77d0065a9cf8c12be5feb7f1e6bc Mon Sep 17 00:00:00 2001 From: vivek kumar Date: Sat, 17 Sep 2022 13:20:02 +0530 Subject: [PATCH 1/3] fix --- functions/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/index.js b/functions/index.js index a7d64a623..748a71b10 100644 --- a/functions/index.js +++ b/functions/index.js @@ -34,8 +34,8 @@ const { filters } = require("./model/filters/filters"); const { requestDemo } = require("./model/requestDemo/requestDemo"); const { meet } = require("./model/meet/meet"); -exports.users = users -exports.tasks = tasks; +exports.users = users; +exports.tasks = tasks exports.organization = organization; exports.teams = teams; exports.sprints = sprints; From 0fa53c31c33962baf381e43cb42f771e9f600ad0 Mon Sep 17 00:00:00 2001 From: vivek kumar Date: Sat, 17 Sep 2022 13:23:17 +0530 Subject: [PATCH 2/3] fix --- .github/workflows/eslint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 1fc965f23..f43bb59bb 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -32,7 +32,7 @@ jobs: - name: Install ESLint run: | npm install eslint@8.10.0 --force - npm install eslint-config-google --save-dev + npm install eslint-config-google --force - name: Run ESLint run: cd functions/ && npx eslint . From 4b0dbc3f7ab292efb332c52a2e48baa46972549a Mon Sep 17 00:00:00 2001 From: vivek kumar Date: Sat, 17 Sep 2022 13:23:37 +0530 Subject: [PATCH 3/3] fix --- functions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/index.js b/functions/index.js index 748a71b10..04c929330 100644 --- a/functions/index.js +++ b/functions/index.js @@ -35,7 +35,7 @@ const { requestDemo } = require("./model/requestDemo/requestDemo"); const { meet } = require("./model/meet/meet"); exports.users = users; -exports.tasks = tasks +exports.tasks = tasks; exports.organization = organization; exports.teams = teams; exports.sprints = sprints;