reykit 1.0.56 → 1.0.57
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 +3 -4
- package/dist/sys.d.ts +6 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27643,14 +27643,13 @@ 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 = 1;
|
|
27646
|
+
}, Symbol.toStringTag, { value: "Module" })), GE = { BASE_URL: "/", DEV: !1, MODE: "production", PROD: !0, SSR: !1 };
|
|
27647
27647
|
function XE() {
|
|
27648
|
-
return
|
|
27648
|
+
return GE;
|
|
27649
27649
|
}
|
|
27650
27650
|
const QE = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27651
27651
|
__proto__: null,
|
|
27652
|
-
|
|
27653
|
-
testFunc: XE
|
|
27652
|
+
getEnv: XE
|
|
27654
27653
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
27655
27654
|
class VE {
|
|
27656
27655
|
/**
|
package/dist/sys.d.ts
CHANGED
|
@@ -4,5 +4,9 @@
|
|
|
4
4
|
* @Contact : reyxbo@163.com
|
|
5
5
|
* @Explain : System methods.
|
|
6
6
|
*/
|
|
7
|
-
|
|
8
|
-
|
|
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>;
|