@olenbetong/appframe-vite 5.1.35 → 5.1.37

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/lib/devServer.js CHANGED
@@ -6,7 +6,7 @@ import { mkdir, readFile, stat, writeFile } from "node:fs/promises";
6
6
  import { resolve } from "node:path";
7
7
  import { importJson } from "./importJson.js";
8
8
  import { getStringCache } from "./localization.js";
9
- dotenv.config();
9
+ dotenv.config({ quiet: true });
10
10
  let appPkg = await importJson("./package.json", true);
11
11
  let { appframe } = appPkg;
12
12
  export async function getLoginInfo() {
@@ -0,0 +1,3 @@
1
+ export declare const MUI_X_LICENSE_KEY = "2e85521ad276a984ae23b0ff4f90d6f8Tz0xMTI3MjEsRT0xNzc4NDU3NjAwMDAwLFM9cHJvLExNPXN1YnNjcmlwdGlvbixQVj1RMy0yMDI0LEtWPTI=";
2
+ export declare const DYNAMSOFT_LICENSE_KEY = "f0068MgAAAANxSwGx926/p+panCB/t/lxxtrDYU0d2LFZhFiVZvQGh9fJ6+7AQ2S4w0KrYDE/+MHJO+GJ6I9EOPxRD40/CZE=";
3
+ export declare const GOOGLE_MAPS_API_KEY: string;
@@ -0,0 +1,5 @@
1
+ export const MUI_X_LICENSE_KEY = "2e85521ad276a984ae23b0ff4f90d6f8Tz0xMTI3MjEsRT0xNzc4NDU3NjAwMDAwLFM9cHJvLExNPXN1YnNjcmlwdGlvbixQVj1RMy0yMDI0LEtWPTI=";
2
+ export const DYNAMSOFT_LICENSE_KEY = "f0068MgAAAANxSwGx926/p+panCB/t/lxxtrDYU0d2LFZhFiVZvQGh9fJ6+7AQ2S4w0KrYDE/+MHJO+GJ6I9EOPxRD40/CZE=";
3
+ export const GOOGLE_MAPS_API_KEY = process.env.NODE_ENV === "development"
4
+ ? "AIzaSyAe-z4UXfbPedkmuAeFtMIdOaeqqgVciQk"
5
+ : "AIzaSyDn6aKrA5yoBEwmoRHRgXceMmtZbR2R2xc";
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@olenbetong/appframe-vite",
3
- "version": "5.1.35",
3
+ "version": "5.1.37",
4
4
  "description": "Tools to use and deploy Vite applications to Appframe",
5
5
  "main": "./lib/index.js",
6
6
  "type": "module",
7
7
  "types": "./lib/index.d.ts",
8
8
  "exports": {
9
- "default": "./lib/index.js",
9
+ ".": "./lib/index.js",
10
10
  "./proxy": {
11
11
  "import": "./lib/proxy.js",
12
12
  "types": "./lib/proxy.d.ts"
@@ -26,16 +26,16 @@
26
26
  "chalk": "^5.4.1",
27
27
  "chokidar": "^4.0.3",
28
28
  "dotenv": "^16.5.0",
29
- "jsdom": "^26.1.0",
29
+ "jsdom": "27.1.0",
30
30
  "rollup-plugin-visualizer": "^5.14.0",
31
31
  "vite-plugin-externals": "^0.6.2",
32
- "@olenbetong/appframe-data": "1.1.1"
32
+ "@olenbetong/appframe-data": "1.2.1"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/jsdom": "^21.1.7",
36
- "@types/node": "^22.14.1",
37
- "typescript": "^5.8.3",
38
- "vite": "^6.3.3"
36
+ "@types/node": "24.9.2",
37
+ "typescript": "^5.9.3",
38
+ "vite": "^7.1.12"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "vite": ">=5.0.0"