@arkstack/console 0.3.5 → 0.3.6
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 -1
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -352,7 +352,8 @@ var logo_default = String.raw`
|
|
|
352
352
|
* @returns
|
|
353
353
|
*/
|
|
354
354
|
const loadCoreApp = async () => {
|
|
355
|
-
const
|
|
355
|
+
const dist = path.relative(process.cwd(), outputDir());
|
|
356
|
+
const module = await import(pathToFileURL(join(process.cwd(), `${dist}/core/bootstrap.js`)).href);
|
|
356
357
|
globalThis.arkctx = { runtime: "CLI" };
|
|
357
358
|
return module.app;
|
|
358
359
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkstack/console",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
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",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"@h3ravel/musket": "^0.10.1",
|
|
50
50
|
"chalk": "^5.6.2",
|
|
51
51
|
"resora": "^0.2.14",
|
|
52
|
-
"@arkstack/
|
|
53
|
-
"@arkstack/
|
|
52
|
+
"@arkstack/contract": "^0.3.6",
|
|
53
|
+
"@arkstack/common": "^0.3.6"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "tsdown",
|