Skip to content

Commit 2716c6d

Browse files
committed
App check merge.
1 parent b15a4ee commit 2716c6d

File tree

7 files changed

+31
-3
lines changed

7 files changed

+31
-3
lines changed

packages/database/test/browser/crawler_support.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import { forceRestClient } from '../../src/api/test_access';
2121
import { getRandomNode, getFreshRepoFromReference } from '../helpers/util';
2222

2323
// Some sanity checks for the ReadonlyRestClient crawler support.
24-
describe('Crawler Support', () => {
24+
describe.only('Crawler Support', () => {
2525
let initialData;
2626
let normalRef;
2727
let restRef;

packages/firebase/app-check/index.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright 2020 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+
import '@firebase/app-check';
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "firebase/app-check",
3+
"main": "dist/index.cjs.js",
4+
"module": "dist/index.esm.js",
5+
"typings": "../empty-import.d.ts"
6+
}
7+

packages/firebase/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
"messaging",
8383
"storage",
8484
"performance",
85-
"remote-config"
85+
"remote-config",
86+
"app-check"
8687
]
8788
}

packages/firebase/src/index.cdn.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ import '../storage';
4040
import '../performance';
4141
import '../analytics';
4242
import '../remote-config';
43+
import '../app-check';
4344

4445
firebase.registerVersion(name, version, 'cdn');
4546

packages/firebase/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ import '../storage';
4949
import '../performance';
5050
import '../analytics';
5151
import '../remote-config';
52+
import '../app-check';
5253

5354
firebase.registerVersion(name, version);
5455

repo-scripts/prune-dts/tests/private-interface.input.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
declare interface A {
1919
a: string;
2020
}
21-
export class B implements A{
21+
export class B implements A {
2222
a: string;
2323
}
2424
export {};

0 commit comments

Comments
 (0)