clefbase 1.3.9 → 1.4.0
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/dist/cli.js +1 -1
- package/dist/react/index.d.ts +3 -0
- package/dist/react/index.d.ts.map +1 -0
- package/dist/react/index.js +8 -0
- package/dist/react/index.js.map +1 -0
- package/package.json +4 -4
package/dist/cli.js
CHANGED
|
@@ -34523,7 +34523,7 @@ async function runSitesList(cwd = process.cwd()) {
|
|
|
34523
34523
|
}
|
|
34524
34524
|
|
|
34525
34525
|
// package.json
|
|
34526
|
-
var version = "1.
|
|
34526
|
+
var version = "1.4.0";
|
|
34527
34527
|
|
|
34528
34528
|
// src/cli/index.ts
|
|
34529
34529
|
var program2 = new Command();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/react/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAC9C,OAAO,EAAE,qBAAqB,EAAE,MAAM,yBAAyB,CAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.EmailVerificationCard = exports.StorageImage = void 0;
|
|
4
|
+
var StorageImage_1 = require("./StorageImage");
|
|
5
|
+
Object.defineProperty(exports, "StorageImage", { enumerable: true, get: function () { return StorageImage_1.StorageImage; } });
|
|
6
|
+
var EmailVerificationCard_1 = require("./EmailVerificationCard");
|
|
7
|
+
Object.defineProperty(exports, "EmailVerificationCard", { enumerable: true, get: function () { return EmailVerificationCard_1.EmailVerificationCard; } });
|
|
8
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/react/index.ts"],"names":[],"mappings":";;;AAAA,+CAA8C;AAArC,4GAAA,YAAY,OAAA;AACrB,iEAAgE;AAAvD,8HAAA,qBAAqB,OAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clefbase",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Firebase-style SDK and CLI for Clefbase — database, auth, storage, and hosting",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"types": "./dist/index.d.ts"
|
|
15
15
|
},
|
|
16
16
|
"./react": {
|
|
17
|
-
"require": "./dist/react/
|
|
18
|
-
"import": "./dist/react/
|
|
19
|
-
"types": "./dist/react/
|
|
17
|
+
"require": "./dist/react/index.js",
|
|
18
|
+
"import": "./dist/react/index.js",
|
|
19
|
+
"types": "./dist/react/index.d.ts"
|
|
20
20
|
},
|
|
21
21
|
"./react/EmailVerificationCard": {
|
|
22
22
|
"require": "./dist/react/EmailVerificationCard.js",
|