@entropic-bond/firebase 1.13.2 → 1.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -0
- package/lib/auth/firebase-auth.d.ts +20 -0
- package/lib/auth/firebase-auth.spec.d.ts +1 -0
- package/lib/cloud-functions/firebase-cloud-functions.d.ts +7 -0
- package/lib/cloud-functions/firebase-cloud-functions.spec.d.ts +6 -0
- package/lib/cloud-storage/firebase-cloud-storage.d.ts +10 -0
- package/lib/cloud-storage/firebase-cloud-storage.spec.d.ts +1 -0
- package/lib/entropic-bond-firebase.js +23778 -0
- package/lib/entropic-bond-firebase.js.map +1 -0
- package/lib/entropic-bond-firebase.umd.cjs +3678 -0
- package/lib/entropic-bond-firebase.umd.cjs.map +1 -0
- package/lib/firebase-helper.d.ts +38 -0
- package/lib/index.d.ts +5 -0
- package/lib/mocks/test-user.d.ts +49 -0
- package/lib/store/firebase-datasource.d.ts +19 -0
- package/lib/store/firebase-datasource.spec.d.ts +1 -0
- package/package.json +7 -3
- package/.firebaserc +0 -5
- package/.github/workflows/release.yml +0 -27
- package/CHANGELOG.md +0 -338
- package/firebase.json +0 -30
- package/firestore.indexes.json +0 -4
- package/firestore.rules +0 -8
- package/functions/package-lock.json +0 -2344
- package/functions/package.json +0 -26
- package/functions/src/index.ts +0 -33
- package/functions/tsconfig.json +0 -19
- package/src/auth/firebase-auth.spec.ts +0 -90
- package/src/auth/firebase-auth.ts +0 -212
- package/src/cloud-functions/firebase-cloud-functions.spec.ts +0 -47
- package/src/cloud-functions/firebase-cloud-functions.ts +0 -25
- package/src/cloud-storage/firebase-cloud-storage.spec.ts +0 -135
- package/src/cloud-storage/firebase-cloud-storage.ts +0 -67
- package/src/firebase-helper.ts +0 -92
- package/src/index.ts +0 -5
- package/src/mocks/mock-data.json +0 -148
- package/src/mocks/test-user.ts +0 -121
- package/src/store/firebase-datasource.spec.ts +0 -555
- package/src/store/firebase-datasource.ts +0 -146
- package/storage.rules +0 -8
- package/tsconfig-build.json +0 -7
- package/tsconfig.json +0 -30
- package/vite.config.ts +0 -23
package/tsconfig-build.json
DELETED
package/tsconfig.json
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compileOnSave": false,
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"target": "ES2020",
|
|
5
|
-
"module": "ESNext",
|
|
6
|
-
"esModuleInterop": true,
|
|
7
|
-
"moduleResolution": "bundler",
|
|
8
|
-
"sourceMap": true,
|
|
9
|
-
"outDir": "lib",
|
|
10
|
-
"rootDir": "src/",
|
|
11
|
-
"resolveJsonModule": true,
|
|
12
|
-
"lib": [
|
|
13
|
-
"esnext", "DOM"
|
|
14
|
-
],
|
|
15
|
-
"declaration": true,
|
|
16
|
-
"experimentalDecorators": true,
|
|
17
|
-
"allowJs": true,
|
|
18
|
-
"isolatedModules": true,
|
|
19
|
-
"strictNullChecks": true, // should be enabled progressively to end having all code base compliant with this rule
|
|
20
|
-
"strictPropertyInitialization": true, // should be enabled progressively to end having all code base compliant with this rule
|
|
21
|
-
"noUncheckedIndexedAccess": true, // this causes errors when accessing arrays elements without checking if they exist
|
|
22
|
-
"noImplicitOverride": true, // this causes errors when overriding methods of base classes. Annoying for React components
|
|
23
|
-
"forceConsistentCasingInFileNames": true,
|
|
24
|
-
"noImplicitThis": true,
|
|
25
|
-
"types": [
|
|
26
|
-
"vitest/globals",
|
|
27
|
-
]
|
|
28
|
-
},
|
|
29
|
-
"include": ["src"]
|
|
30
|
-
}
|
package/vite.config.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { resolve } from 'path'
|
|
2
|
-
import { defineConfig } from 'vitest/config'
|
|
3
|
-
import dts from 'vite-plugin-dts'
|
|
4
|
-
|
|
5
|
-
export default defineConfig({
|
|
6
|
-
test: {
|
|
7
|
-
globals: true,
|
|
8
|
-
environment: 'node',
|
|
9
|
-
exclude: ['**/node_modules', '**/dist', '.idea', '.git', '.cache','**/lib', '**/out'],
|
|
10
|
-
},
|
|
11
|
-
build: {
|
|
12
|
-
lib: {
|
|
13
|
-
entry: resolve( __dirname, 'src/index.ts' ),
|
|
14
|
-
name: 'entropic-bond-firebase',
|
|
15
|
-
fileName: 'entropic-bond-firebase'
|
|
16
|
-
|
|
17
|
-
},
|
|
18
|
-
"outDir": "lib",
|
|
19
|
-
},
|
|
20
|
-
plugins: [
|
|
21
|
-
dts()
|
|
22
|
-
]
|
|
23
|
-
})
|