Skip to content

Commit 1a975dc

Browse files
committed
making changes to fix pipeline issue
1 parent 8f63fcb commit 1a975dc

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

packages/auth/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@
102102
"@firebase/app": "0.x"
103103
},
104104
"dependencies": {
105+
"@firebase/auth": "^0.20.11",
105106
"@firebase/component": "0.5.21",
106107
"@firebase/logger": "0.3.4",
107108
"@firebase/util": "1.7.3",
@@ -113,14 +114,15 @@
113114
"@firebase/app": "0.8.4",
114115
"@rollup/plugin-json": "4.1.0",
115116
"@rollup/plugin-strip": "2.1.0",
117+
"@types/express": "4.17.14",
118+
"@types/mocha": "^10.0.1",
116119
"chromedriver": "98.0.1",
117120
"rollup": "2.79.1",
118121
"rollup-plugin-sourcemaps": "0.6.3",
119122
"rollup-plugin-typescript2": "0.31.2",
120123
"selenium-webdriver": "4.5.0",
121-
"typescript": "4.7.4",
122-
"@types/express": "4.17.14",
123-
"totp-generator": "0.0.14"
124+
"totp-generator": "0.0.14",
125+
"typescript": "4.7.4"
124126
},
125127
"repository": {
126128
"directory": "packages/auth",
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright 2022 Google LLC
4+
*
5+
* Licensed under the Apache License, Version 2.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* http://www.apache.org/licenses/LICENSE-2.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*/
17+
18+
declare module 'totp-generator';

packages/auth/tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"extends": "../../config/tsconfig.base.json",
3+
34
"compilerOptions": {
5+
"lib": ["ES2017", "dom", "es6"],
6+
"typeRoots": ["src/@types", "node_modules/@types"],
47
"outDir": "dist"
58
},
69
"exclude": [

0 commit comments

Comments
 (0)