reykit 1.0.53 → 1.0.55
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/index.js +19 -9
- package/dist/sys.d.ts +8 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27643,11 +27643,21 @@ const HE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
27643
27643
|
PATTERN_IP: BE,
|
|
27644
27644
|
PATTERN_PHONE: qE,
|
|
27645
27645
|
PATTERN_URL: NE
|
|
27646
|
-
}, Symbol.toStringTag, { value: "Module" })), GE = { BASE_URL: "/", DEV: !1, MODE: "production", PROD: !0, SSR: !1 }
|
|
27646
|
+
}, Symbol.toStringTag, { value: "Module" })), GE = { BASE_URL: "/", DEV: !1, MODE: "production", PROD: !0, SSR: !1 };
|
|
27647
|
+
function XE() {
|
|
27648
|
+
return GE;
|
|
27649
|
+
}
|
|
27650
|
+
const QE = 1;
|
|
27651
|
+
function VE() {
|
|
27652
|
+
return 2;
|
|
27653
|
+
}
|
|
27654
|
+
const ZE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27647
27655
|
__proto__: null,
|
|
27648
|
-
|
|
27656
|
+
getEnv: XE,
|
|
27657
|
+
test: QE,
|
|
27658
|
+
testFunc: VE
|
|
27649
27659
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
27650
|
-
class
|
|
27660
|
+
class LE {
|
|
27651
27661
|
/**
|
|
27652
27662
|
* Build instance.
|
|
27653
27663
|
*
|
|
@@ -27739,19 +27749,19 @@ class VE {
|
|
|
27739
27749
|
this.set(I, !R);
|
|
27740
27750
|
}
|
|
27741
27751
|
}
|
|
27742
|
-
const
|
|
27752
|
+
const wE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27743
27753
|
__proto__: null,
|
|
27744
|
-
Storager:
|
|
27745
|
-
}, Symbol.toStringTag, { value: "Module" })),
|
|
27754
|
+
Storager: LE
|
|
27755
|
+
}, Symbol.toStringTag, { value: "Module" })), kE = {
|
|
27746
27756
|
component: UE,
|
|
27747
27757
|
base: _E,
|
|
27748
27758
|
net: HE,
|
|
27749
27759
|
re: jE,
|
|
27750
27760
|
react: zE,
|
|
27751
|
-
sys:
|
|
27761
|
+
sys: ZE,
|
|
27752
27762
|
tailwindcss: ME,
|
|
27753
|
-
window:
|
|
27763
|
+
window: wE
|
|
27754
27764
|
};
|
|
27755
27765
|
export {
|
|
27756
|
-
|
|
27766
|
+
kE as default
|
|
27757
27767
|
};
|
package/dist/sys.d.ts
CHANGED
|
@@ -4,4 +4,11 @@
|
|
|
4
4
|
* @Contact : reyxbo@163.com
|
|
5
5
|
* @Explain : System methods.
|
|
6
6
|
*/
|
|
7
|
-
|
|
7
|
+
/**
|
|
8
|
+
* Get environment variable dictionary of within then `Vite` frameework.
|
|
9
|
+
*
|
|
10
|
+
* @returns Environment dictionary
|
|
11
|
+
*/
|
|
12
|
+
export declare function getEnv(): Record<string, string>;
|
|
13
|
+
export declare const test = 1;
|
|
14
|
+
export declare function testFunc(): number;
|