Skip to content

Commit d18e786

Browse files
committed
Add to configs
1 parent 317d1a9 commit d18e786

File tree

5 files changed

+30
-0
lines changed

5 files changed

+30
-0
lines changed

.changeset/config.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"firebase-messaging-integration-test",
1616
"firebase-compat-typings-test",
1717
"@firebase/app-exp",
18+
"@firebase/app-check-exp",
1819
"@firebase/analytics-compat",
1920
"@firebase/analytics-exp",
2021
"@firebase/auth-exp",

packages-exp/app-exp/src/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import { name as appName } from '../package.json';
1919
import { name as appCompatName } from '../../app-compat/package.json';
20+
import { name as appCheckName } from '../../../packages-exp/app-check-exp/package.json';
2021
import { name as analyticsCompatName } from '../../../packages-exp/analytics-compat/package.json';
2122
import { name as analyticsName } from '../../../packages-exp/analytics-exp/package.json';
2223
import { name as authName } from '../../../packages-exp/auth-exp/package.json';
@@ -49,6 +50,7 @@ export const DEFAULT_ENTRY_NAME = '[DEFAULT]';
4950
export const PLATFORM_LOG_STRING = {
5051
[appName]: 'fire-core',
5152
[appCompatName]: 'fire-core-compat',
53+
[appCheckName]: 'fire-app-check',
5254
[analyticsName]: 'fire-analytics',
5355
[analyticsCompatName]: 'fire-analytics-compat',
5456
[authName]: 'fire-auth',
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+
export * from '@firebase/app-check-exp';
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"name": "firebase-exp/app-check",
3+
"main": "dist/index.cjs.js",
4+
"browser": "dist/index.esm.js",
5+
"module": "dist/index.esm.js",
6+
"typings": "dist/app/index.d.ts"
7+
}

packages-exp/firebase-exp/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@
127127
"@firebase/analytics-compat": "0.0.900",
128128
"@firebase/app-exp": "0.0.900",
129129
"@firebase/app-compat": "0.0.900",
130+
"@firebase/app-check-exp": "0.0.900",
130131
"@firebase/auth-exp": "0.0.900",
131132
"@firebase/auth-compat": "0.0.900",
132133
"@firebase/database": "0.10.0",
@@ -159,6 +160,7 @@
159160
"components": [
160161
"analytics",
161162
"app",
163+
"app-check",
162164
"auth",
163165
"functions",
164166
"firestore",

0 commit comments

Comments
 (0)