@arkstack/console 0.3.8 → 0.3.10
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 +2 -2
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import { t as ArkstackConsoleApp } from "./app-DtecNuLP.js";
|
|
3
|
-
import { config, env, loadPrototypes, outputDir } from "@arkstack/common";
|
|
3
|
+
import { config, env, importFile, loadPrototypes, outputDir } from "@arkstack/common";
|
|
4
4
|
import { fileURLToPath, pathToFileURL } from "node:url";
|
|
5
5
|
import path, { join } from "node:path";
|
|
6
6
|
import { MakeResource } from "resora";
|
|
@@ -353,7 +353,7 @@ var logo_default = String.raw`
|
|
|
353
353
|
*/
|
|
354
354
|
const loadCoreApp = async () => {
|
|
355
355
|
const dist = path.relative(process.cwd(), outputDir());
|
|
356
|
-
return (await
|
|
356
|
+
return (await importFile(join(process.cwd(), `${dist}/core/bootstrap.js`))).app;
|
|
357
357
|
};
|
|
358
358
|
/**
|
|
359
359
|
* Runs the console kernel, initializing the application and registering commands.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkstack/console",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Console package for Arkstack providing console-specific implementations of core Arkstack features such as routing, middleware, and database integration.",
|
|
6
6
|
"homepage": "https://arkstack.toneflix.net",
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
45
45
|
"clear-router": "^2.3.3",
|
|
46
|
-
"arkormx": "^1.3.
|
|
46
|
+
"arkormx": "^1.3.2"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@h3ravel/musket": "^0.10.1",
|
|
50
50
|
"chalk": "^5.6.2",
|
|
51
51
|
"resora": "^0.2.14",
|
|
52
|
-
"@arkstack/common": "^0.3.
|
|
53
|
-
"@arkstack/contract": "^0.3.
|
|
52
|
+
"@arkstack/common": "^0.3.10",
|
|
53
|
+
"@arkstack/contract": "^0.3.10"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "tsdown",
|