@arkstack/console 0.12.26 → 0.12.27
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/prepare.js +2 -1
- package/package.json +3 -3
package/dist/prepare.js
CHANGED
|
@@ -8,11 +8,12 @@ import chalk from "chalk";
|
|
|
8
8
|
|
|
9
9
|
//#region dist/prepare.js
|
|
10
10
|
if (!existsSync(path.join(Arkstack.rootDir(), ".arkstack/build"))) mkdirSync(path.join(Arkstack.rootDir(), ".arkstack/build"), { recursive: true });
|
|
11
|
+
const LOG_LEVEL = parseInt(process.env.VERBOSITY ?? "0") > 0 ? [] : ["--log-level=silent"];
|
|
11
12
|
const NODE_ENV = process.env.NODE_ENV || "development";
|
|
12
13
|
const child = spawn(process.platform === "win32" ? "pnpm.cmd" : "pnpm", [
|
|
13
14
|
"exec",
|
|
14
15
|
"tsdown",
|
|
15
|
-
|
|
16
|
+
...LOG_LEVEL
|
|
16
17
|
], {
|
|
17
18
|
cwd: Arkstack.rootDir(),
|
|
18
19
|
stdio: "inherit",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arkstack/console",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.27",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Console module for Arkstack, providing the command-line runtime and console integration layer.",
|
|
6
6
|
"homepage": "https://arkstack.toneflix.net/guide/cli",
|
|
@@ -51,8 +51,8 @@
|
|
|
51
51
|
"chalk": "^5.6.2",
|
|
52
52
|
"resora": "^1.3.17",
|
|
53
53
|
"ts-morph": "^28.0.0",
|
|
54
|
-
"@arkstack/common": "^0.12.
|
|
55
|
-
"@arkstack/contract": "^0.12.
|
|
54
|
+
"@arkstack/common": "^0.12.27",
|
|
55
|
+
"@arkstack/contract": "^0.12.27"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"build": "tsdown",
|