@arkstack/console 0.12.26 → 0.12.28

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.
Files changed (2) hide show
  1. package/dist/prepare.js +4 -3
  2. package/package.json +3 -3
package/dist/prepare.js CHANGED
@@ -8,11 +8,14 @@ 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
+ if (!process.env.NODE_CI) BuildInterfaces.configs();
12
+ BuildInterfaces.tsconfig();
13
+ const LOG_LEVEL = parseInt(process.env.VERBOSITY ?? "0") > 0 ? [] : ["--log-level=silent"];
11
14
  const NODE_ENV = process.env.NODE_ENV || "development";
12
15
  const child = spawn(process.platform === "win32" ? "pnpm.cmd" : "pnpm", [
13
16
  "exec",
14
17
  "tsdown",
15
- "--log-level=silent"
18
+ ...LOG_LEVEL
16
19
  ], {
17
20
  cwd: Arkstack.rootDir(),
18
21
  stdio: "inherit",
@@ -31,8 +34,6 @@ child.on("exit", (code) => {
31
34
  }
32
35
  throw new Error(`tsdown exited with code ${code}`);
33
36
  });
34
- if (!process.env.NODE_CI) BuildInterfaces.configs();
35
- BuildInterfaces.tsconfig();
36
37
 
37
38
  //#endregion
38
39
  export { };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arkstack/console",
3
- "version": "0.12.26",
3
+ "version": "0.12.28",
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.26",
55
- "@arkstack/contract": "^0.12.26"
54
+ "@arkstack/common": "^0.12.28",
55
+ "@arkstack/contract": "^0.12.28"
56
56
  },
57
57
  "scripts": {
58
58
  "build": "tsdown",