@firebase/app-compat
Advanced tools
Comparing version 0.1.1-2021727231341 to 0.1.1-2021730202621
# @firebase/app-compat | ||
## 0.1.1-2021727231341 | ||
## 0.1.1-2021730202621 | ||
### Patch Changes | ||
- [`2267889fb`](https://github.com/firebase/firebase-js-sdk/commit/2267889fb4d38ca099397b177747cb0853d87c46) - cjs build | ||
- [`cd15df0d1`](https://github.com/firebase/firebase-js-sdk/commit/cd15df0d1f51110f448e4284244b06be8d37f1c3) [#5400](https://github.com/firebase/firebase-js-sdk/pull/5400) (fixes [#2903](https://github.com/firebase/firebase-js-sdk/issues/2903)) - Fix cjs builds by removing the named export from app-compat | ||
* [`1b33fda40`](https://github.com/firebase/firebase-js-sdk/commit/1b33fda40ddc48e9ed28e94607bf100159f5b80e) [#5385](https://github.com/firebase/firebase-js-sdk/pull/5385) (fixes [#5382](https://github.com/firebase/firebase-js-sdk/issues/5382)) - Remove private types in app-compat | ||
## 0.1.0 | ||
@@ -10,0 +12,0 @@ |
@@ -50,2 +50,5 @@ 'use strict'; | ||
* a shared authentication state. | ||
* | ||
* marked as internal because it references internal types exported from @firebase/app | ||
* @internal | ||
*/ | ||
@@ -418,3 +421,3 @@ var FirebaseAppImpl = /** @class */ (function () { | ||
var name = "@firebase/app-compat"; | ||
var version = "0.1.1-2021727231341"; | ||
var version = "0.1.1-2021730202621"; | ||
@@ -421,0 +424,0 @@ /** |
@@ -26,2 +26,5 @@ import { ErrorFactory, contains, deepExtend, createSubscribe, isBrowser } from '@firebase/util'; | ||
* a shared authentication state. | ||
* | ||
* marked as internal because it references internal types exported from @firebase/app | ||
* @internal | ||
*/ | ||
@@ -370,3 +373,3 @@ class FirebaseAppImpl { | ||
const name = "@firebase/app-compat"; | ||
const version = "0.1.1-2021727231341"; | ||
const version = "0.1.1-2021730202621"; | ||
@@ -373,0 +376,0 @@ /** |
@@ -27,2 +27,5 @@ import { ErrorFactory, contains, deepExtend, createSubscribe, isBrowser } from '@firebase/util'; | ||
* a shared authentication state. | ||
* | ||
* marked as internal because it references internal types exported from @firebase/app | ||
* @internal | ||
*/ | ||
@@ -395,3 +398,3 @@ var FirebaseAppImpl = /** @class */ (function () { | ||
var name = "@firebase/app-compat"; | ||
var version = "0.1.1-2021727231341"; | ||
var version = "0.1.1-2021730202621"; | ||
@@ -398,0 +401,0 @@ /** |
@@ -317,3 +317,3 @@ import * as modularAPIs from '@firebase/app'; | ||
var name$1 = "@firebase/app-compat"; | ||
var version = "0.1.1-2021727231341"; | ||
var version = "0.1.1-2021730202621"; | ||
@@ -320,0 +320,0 @@ /** |
@@ -295,3 +295,3 @@ import * as modularAPIs from '@firebase/app'; | ||
const name$1 = "@firebase/app-compat"; | ||
const version = "0.1.1-2021727231341"; | ||
const version = "0.1.1-2021730202621"; | ||
@@ -298,0 +298,0 @@ /** |
@@ -44,2 +44,5 @@ /** | ||
* a shared authentication state. | ||
* | ||
* marked as internal because it references internal types exported from @firebase/app | ||
* @internal | ||
*/ | ||
@@ -46,0 +49,0 @@ export declare class FirebaseAppImpl implements Compat<_FirebaseAppExp>, _FirebaseApp { |
@@ -18,3 +18,3 @@ /** | ||
import { LogCallback, LogLevelString, LogOptions } from '@firebase/logger'; | ||
import { FirebaseAppImpl, _FirebaseApp } from './firebaseApp'; | ||
import { _FirebaseApp } from './firebaseApp'; | ||
export interface FirebaseOptions { | ||
@@ -34,2 +34,5 @@ apiKey?: string; | ||
} | ||
interface FirebaseAppContructor { | ||
new (): FirebaseApp; | ||
} | ||
/** | ||
@@ -78,3 +81,3 @@ * This interface will be enhanced by other products by adding e.g. firestore(), messaging() methods. | ||
*/ | ||
App: typeof FirebaseAppImpl; | ||
App: FirebaseAppContructor; | ||
}; | ||
@@ -100,1 +103,2 @@ /** | ||
} | ||
export {}; |
{ | ||
"name": "@firebase/app-compat", | ||
"version": "0.1.1-2021727231341", | ||
"version": "0.1.1-2021730202621", | ||
"description": "The primary entrypoint to the Firebase JS SDK", | ||
@@ -17,3 +17,3 @@ "author": "Firebase <firebase-support@google.com> (https://firebase.google.com/)", | ||
"lint:fix": "eslint --fix -c .eslintrc.js '**/*.ts' --ignore-path '../../.gitignore'", | ||
"build": "rollup -c", | ||
"build": "rollup -c && yarn api-report", | ||
"build:deps": "lerna run --scope @firebase/app-compat --include-dependencies build", | ||
@@ -26,3 +26,5 @@ "dev": "rollup -c -w", | ||
"test:browser:debug": "karma start --browsers Chrome --auto-watch", | ||
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* src/**/*.test.ts --config ../../config/mocharc.node.js" | ||
"test:node": "TS_NODE_FILES=true TS_NODE_CACHE=NO TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc --reporter lcovonly -- mocha test/**/*.test.* src/**/*.test.ts --config ../../config/mocharc.node.js", | ||
"api-report": "api-extractor run --local --verbose", | ||
"typings:public": "node ../../scripts/exp/use_typings.js ./dist/app-compat-public.d.ts" | ||
}, | ||
@@ -52,3 +54,3 @@ "license": "Apache-2.0", | ||
}, | ||
"typings": "dist/src/index.d.ts", | ||
"typings": "./dist/app-compat-public.d.ts", | ||
"nyc": { | ||
@@ -61,2 +63,2 @@ "extension": [ | ||
"esm5": "dist/index.esm5.js" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
232883
31
2855