miolo 3.0.0-beta.230 → 3.0.0-beta.231

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.
@@ -16,6 +16,10 @@ export async function miolo_build_client(
16
16
 
17
17
  await build({
18
18
  ...viteConfig,
19
+ define: {
20
+ ...viteConfig?.define,
21
+ "import.meta": "{}"
22
+ },
19
23
  build: {
20
24
  outDir: path.resolve(pkgPath, cliDest),
21
25
  emptyOutDir: false,
@@ -16,5 +16,12 @@ export async function miolo_build_banner(pkgPath) {
16
16
  *
17
17
  * @license ${pkgJson.license || "MIT"}
18
18
  */
19
- /* eslint-disable */ `
19
+ /* eslint-disable */
20
+ import { fileURLToPath as __miolo_fileURLToPath } from 'node:url';
21
+ import { dirname as __miolo_dirname } from 'node:path';
22
+ import { createRequire as __miolo_createRequire } from 'node:module';
23
+ const __filename = __miolo_fileURLToPath(import.meta.url);
24
+ const __dirname = __miolo_dirname(__filename);
25
+ const require = __miolo_createRequire(import.meta.url);
26
+ `
20
27
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "miolo",
3
- "version": "3.0.0-beta.230",
3
+ "version": "3.0.0-beta.231",
4
4
  "description": "all-in-one koa-based server",
5
5
  "author": "Donato Lorenzo <donato@afialapis.com>",
6
6
  "contributors": [
@@ -48,7 +48,7 @@
48
48
  "@babel/plugin-proposal-decorators": "^7.29.7",
49
49
  "@babel/preset-env": "^7.29.7",
50
50
  "@babel/preset-react": "^7.29.7",
51
- "@dotenvx/dotenvx": "1.75.1",
51
+ "@dotenvx/dotenvx": "2.11.1",
52
52
  "@koa/bodyparser": "^6.1.0",
53
53
  "@koa/cors": "^5.0.0",
54
54
  "@koa/router": "^15.7.0",
@@ -46,9 +46,9 @@
46
46
  "intre": "^3.0.0-beta.4",
47
47
  "joi": "^18.2.3",
48
48
  "lucide-react": "^1.24.0",
49
- "miolo-cli": "^3.0.0-beta.230",
49
+ "miolo-cli": "^3.0.0-beta.231",
50
50
  "miolo-model": "file:../miolo-model",
51
- "miolo-react": "^3.0.0-beta.230",
51
+ "miolo-react": "^3.0.0-beta.231",
52
52
  "next-themes": "^0.4.6",
53
53
  "radix-ui": "^1.6.2",
54
54
  "react": "^19.2.7",
@@ -63,7 +63,7 @@
63
63
  },
64
64
  "devDependencies": {
65
65
  "@biomejs/biome": "2.5.3",
66
- "miolo": "^3.0.0-beta.230",
66
+ "miolo": "^3.0.0-beta.231",
67
67
  "sass-embedded": "^1.100.0"
68
68
  },
69
69
  "overrides": {