firebase-api-surface
Advanced tools
Comparing version 0.8.0 to 0.8.1
@@ -11,11 +11,4 @@ 'use strict'; | ||
// export { FirebaseMessaging } from "@firebase/messaging-types"; | ||
var NotYetDone = true; | ||
var messaging = /*#__PURE__*/Object.freeze({ | ||
NotYetDone: NotYetDone | ||
}); | ||
var app = /*#__PURE__*/Object.freeze({ | ||
@@ -27,2 +20,1 @@ | ||
exports.rtdb = rtdb; | ||
exports.messaging = messaging; |
{ | ||
"name": "firebase-api-surface", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"description": "the publically exposed firebase API", | ||
@@ -12,8 +12,8 @@ "license": "MIT", | ||
], | ||
"main": "lib/index.js", | ||
"typings": "lib/index.d.ts", | ||
"main": "dist/esnext/index.js", | ||
"typings": "dist/esnext/index.d.ts", | ||
"scripts": { | ||
"clean": "rimraf lib", | ||
"clean": "rimraf dist", | ||
"lint": "tslint --force --format verbose \"src/**/*.ts\"", | ||
"build": "tslint src/**/*.ts && tsc && bili lib/index.js --format umd-min,cjs", | ||
"build": "tslint src/**/*.ts && tsc -P tsconfig.esnext.json && rollup -c rollup.umd.js && rollup -c rollup.cjs.js", | ||
"test": "ts-node ./scripts/test.ts ", | ||
@@ -24,10 +24,7 @@ "coverage": "nyc --reporter=text --reporter=html mocha --compilers ts:ts-node/register", | ||
"dependencies": { | ||
"common-types": "^1.7.36" | ||
}, | ||
"devDependencies": { | ||
"@firebase/app-types": "^0.1.1", | ||
"@firebase/auth-types": "^0.1.1", | ||
"@firebase/database-types": "^0.1.1", | ||
"@firebase/firestore-types": "^0.2.1", | ||
"@firebase/messaging-types": "^0.1.1", | ||
"common-types": "^1.7.35" | ||
}, | ||
"devDependencies": { | ||
"@types/rimraf": "^2.0.2", | ||
@@ -42,3 +39,3 @@ "@types/shelljs": "^0.7.7", | ||
"rimraf": "^2.6.2", | ||
"rollup": "^0.60.0", | ||
"rollup": "^0.60.1", | ||
"test-console": "^1.1.0", | ||
@@ -45,0 +42,0 @@ "tslint": "^5.9.1", |
import * as rtdb from "./rtdb"; | ||
import * as app from "./app"; | ||
// import * as storage from "./storage"; | ||
// import * as firestore from "./firestore"; | ||
import * as messaging from "./messaging"; | ||
import * as app from "./app"; | ||
// import * as auth from "./auth"; | ||
export { app, rtdb, messaging }; | ||
export { app, rtdb }; |
import { IDictionary } from "common-types"; | ||
import { IFirebaseApp } from "./app"; | ||
export interface IThenableReference<T = any> | ||
@@ -4,0 +3,0 @@ extends IReference<T>, |
{ | ||
"compilerOptions": { | ||
"declaration": true, | ||
"module": "es2015", | ||
"module": "commonjs", | ||
"moduleResolution": "node", | ||
"target": "es2015", | ||
"noImplicitAny": true, | ||
"outDir": "./lib", | ||
"outDir": "./dist/esnext", | ||
"preserveConstEnums": true, | ||
"removeComments": false, | ||
"typeRoots": ["./node_modules/@types"] | ||
"typeRoots": ["./node_modules/@types", "src/@types"] | ||
}, | ||
@@ -13,0 +13,0 @@ "include": ["src/**/*"], |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
1
266805
16
35
867
1
- Removed@firebase/app-types@^0.1.1
- Removed@firebase/auth-types@^0.1.1
- Removed@firebase/database-types@^0.1.1
- Removed@firebase/firestore-types@^0.2.1
- Removed@firebase/messaging-types@^0.1.1
- Removed@firebase/app-types@0.1.2(transitive)
- Removed@firebase/auth-types@0.1.2(transitive)
- Removed@firebase/database-types@0.1.2(transitive)
- Removed@firebase/firestore-types@0.2.2(transitive)
- Removed@firebase/messaging-types@0.1.3(transitive)
Updatedcommon-types@^1.7.36