reykit 1.0.53 → 1.0.54
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 +6 -2
- package/dist/sys.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -27643,9 +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 = { 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 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
27647
27651
|
__proto__: null,
|
|
27648
|
-
|
|
27652
|
+
getEnv: XE
|
|
27649
27653
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
27650
27654
|
class VE {
|
|
27651
27655
|
/**
|
package/dist/sys.d.ts
CHANGED
|
@@ -4,4 +4,9 @@
|
|
|
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>;
|