Skip to content

Commit f526dfd

Browse files
committed
Add exp and compat packages
1 parent 580b354 commit f526dfd

File tree

6 files changed

+61
-0
lines changed

6 files changed

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

packages-exp/firebase-exp/index.ts

Whitespace-only changes.

packages-exp/firebase-exp/package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
"node": "./app/dist/index.cjs.js",
3333
"default": "./app/dist/index.esm.js"
3434
},
35+
"./app-check": {
36+
"node": "./app-check/dist/index.cjs.js",
37+
"default": "./app-check/dist/index.esm.js"
38+
},
3539
"./auth": {
3640
"node": "./auth/dist/index.cjs.js",
3741
"default": "./auth/dist/index.esm.js"
@@ -80,6 +84,10 @@
8084
"node": "./compat/app/dist/index.cjs.js",
8185
"default": "./compat/app/dist/index.esm.js"
8286
},
87+
"./compat/app-check": {
88+
"node": "./compat/app-check/dist/index.cjs.js",
89+
"default": "./compat/app-check/dist/index.esm.js"
90+
},
8391
"./compat/auth": {
8492
"node": "./compat/auth/dist/index.cjs.js",
8593
"default": "./compat/auth/dist/index.esm.js"
@@ -131,6 +139,8 @@
131139
"@firebase/analytics-compat": "0.0.900",
132140
"@firebase/app-exp": "0.0.900",
133141
"@firebase/app-compat": "0.0.900",
142+
"@firebase/app-check-exp": "0.0.900",
143+
"@firebase/app-check-compat": "0.0.900",
134144
"@firebase/auth-exp": "0.0.900",
135145
"@firebase/auth-compat": "0.0.900",
136146
"@firebase/database": "0.10.5",
@@ -163,6 +173,7 @@
163173
"components": [
164174
"analytics",
165175
"app",
176+
"app-check",
166177
"auth",
167178
"functions",
168179
"firestore",

0 commit comments

Comments
 (0)