Skip to content

Commit 6dae11e

Browse files
committed
adding exports
1 parent d3633c7 commit 6dae11e

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@
5757
"./v2/identity": "./lib/v2/providers/identity.js",
5858
"./v2/database": "./lib/v2/providers/database.js",
5959
"./v2/scheduler": "./lib/v2/providers/scheduler.js",
60-
"./v2/remoteConfig": "./lib/v2/providers/remoteConfig.js"
60+
"./v2/remoteConfig": "./lib/v2/providers/remoteConfig.js",
61+
"./v2/testLab": "./lib/v2/providers/testLab.js"
6162
},
6263
"typesVersions": {
6364
"*": {
@@ -150,6 +151,9 @@
150151
],
151152
"v2/remoteConfig": [
152153
"lib/v2/providers/remoteConfig"
154+
],
155+
"v2/testLab": [
156+
"lib/v2/providers/testLab"
153157
]
154158
}
155159
},

src/v2/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import * as scheduler from "./providers/scheduler";
3939
import * as storage from "./providers/storage";
4040
import * as tasks from "./providers/tasks";
4141
import * as remoteConfig from "./providers/remoteConfig";
42+
import * as testLab from "./providers/testLab";
4243

4344
export {
4445
alerts,
@@ -52,6 +53,7 @@ export {
5253
eventarc,
5354
scheduler,
5455
remoteConfig,
56+
testLab,
5557
};
5658

5759
export {

v2/testLab.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// The MIT License (MIT)
2+
//
3+
// Copyright (c) 2022 Firebase
4+
//
5+
// Permission is hereby granted, free of charge, to any person obtaining a copy
6+
// of this software and associated documentation files (the "Software"), to deal
7+
// in the Software without restriction, including without limitation the rights
8+
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
// copies of the Software, and to permit persons to whom the Software is
10+
// furnished to do so, subject to the following conditions:
11+
//
12+
// The above copyright notice and this permission notice shall be included in all
13+
// copies or substantial portions of the Software.
14+
//
15+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
// SOFTWARE.
22+
23+
// This file is not part of the firebase-functions SDK. It is used to silence the
24+
// imports eslint plugin until it can understand import paths defined by node
25+
// package exports.
26+
// For more information, see github.com/import-js/eslint-plugin-import/issues/1810

0 commit comments

Comments
 (0)