Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.

Commit 6e0c051

Browse files
bump a few deps
1 parent 2d3af8d commit 6e0c051

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

demo/firebasefunctions/functions/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
},
1212
"main": "lib/index.js",
1313
"dependencies": {
14-
"firebase-admin": "~6.0.0",
15-
"firebase-functions": "^2.0.3"
14+
"firebase-admin": "~7.0.0",
15+
"firebase-functions": "~2.2.0"
1616
},
1717
"devDependencies": {
18-
"tslint": "~5.8.0",
19-
"typescript": "~2.8.3"
18+
"tslint": "~5.12.1",
19+
"typescript": "~3.3.1"
2020
},
2121
"private": true
2222
}

demo/firebasefunctions/functions/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ export const helloWorldJson = functions.https.onRequest((request, response) => {
1414
// this is a proper callable function
1515
export const helloName = functions.https.onCall((data, context) => {
1616
return {
17-
message: "Hello, " + data
17+
message: "Hello: " + data
1818
}
1919
});

demo/firebasefunctions/functions/tsconfig.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"compilerOptions": {
33
"lib": ["es6"],
44
"module": "commonjs",
5+
"skipLibCheck": true,
56
"noImplicitReturns": true,
67
"outDir": "lib",
78
"sourceMap": true,
@@ -10,5 +11,8 @@
1011
"compileOnSave": true,
1112
"include": [
1213
"src"
14+
],
15+
"exclude": [
16+
"node_modules"
1317
]
1418
}

0 commit comments

Comments
 (0)