Skip to content

Commit 5ae1bcc

Browse files
committed
Addressed comments
1 parent b4a27c8 commit 5ae1bcc

File tree

3 files changed

+2
-23
lines changed

3 files changed

+2
-23
lines changed

packages/data-connect/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* Copyright 2017 Google LLC
3+
* Copyright 2024 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

packages/data-connect/rollup.config.js

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @license
3-
* Copyright 2018 Google LLC
3+
* Copyright 2024 Google LLC
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -148,19 +148,6 @@ const nodeBuilds = [
148148
external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`)),
149149
onwarn: onWarn
150150
}
151-
/**
152-
* Standalone Build for Admin SDK
153-
*/
154-
// {
155-
// input: 'src/index.standalone.ts',
156-
// output: [{ file: pkg.standalone, format: 'cjs', sourcemap: true }],
157-
// plugins: es5BuildPlugins,
158-
// treeshake: {
159-
// moduleSideEffects: false
160-
// },
161-
// external: id => deps.some(dep => id === dep || id.startsWith(`${dep}/`)),
162-
// onwarn: onWarn
163-
// }
164151
];
165152

166153
export default [...browserBuilds, ...nodeBuilds];

packages/data-connect/src/core/AppCheckTokenProvider.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,4 @@ export class AppCheckTokenProvider {
6666
?.get()
6767
.then(appCheck => appCheck.addTokenListener(listener));
6868
}
69-
70-
// Not currently used at the moment. Will update if needed.
71-
// notifyForInvalidToken(): void {
72-
// warn(
73-
// `Provided AppCheck credentials for the app named "${this.appName_}" ` +
74-
// 'are invalid. This usually indicates your app was not initialized correctly.'
75-
// );
76-
// }
7769
}

0 commit comments

Comments
 (0)