Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prototype subpackage in webchannel wrapper #8185

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/analytics/package.json
Expand Up @@ -44,6 +44,7 @@
"@firebase/logger": "0.4.1",
"@firebase/util": "1.9.5",
"@firebase/component": "0.6.6",
"@firebase/webchannel-wrapper": "0.10.6",
"tslib": "^2.1.0"
},
"license": "Apache-2.0",
Expand Down
4 changes: 4 additions & 0 deletions packages/analytics/src/api.ts
Expand Up @@ -54,6 +54,10 @@ import {
internalGetGoogleAnalyticsClientId
} from './functions';
import { ERROR_FACTORY, AnalyticsError } from './errors';
import * as ww from '@firebase/webchannel-wrapper/test';
// import * as cordova from '@firebase/auth/cordova';

console.log(ww);

export { settings } from './factory';

Expand Down
1 change: 1 addition & 0 deletions packages/webchannel-wrapper/test/blah.js
@@ -0,0 +1 @@
export default {};
7 changes: 7 additions & 0 deletions packages/webchannel-wrapper/test/package.json
@@ -0,0 +1,7 @@
{
"name": "@firebase/webchannel-wrapper/test",
"description": "A Cordova-specific build of the Firebase Auth JS SDK",
"browser": "../test/blah.js",
"module": "../test/blah.js",
"typings": "../src/index.d.ts"
}