@savvy-web/cli 2.5.3 → 2.5.5

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/cli/index.js CHANGED
@@ -76,7 +76,7 @@ const rootCommand = Command.make("savvy").pipe(Command.withSubcommands([
76
76
  * CLI application: reads argv from the Stdio service provided by NodeServices.
77
77
  * (v4's `Command.run` takes only `version` — the name comes from the root command.)
78
78
  */
79
- const cli = Command.run(rootCommand, { version: "2.5.3" });
79
+ const cli = Command.run(rootCommand, { version: "2.5.5" });
80
80
  /**
81
81
  * Shared workspace services from `@effected/workspaces`, wired as a
82
82
  * self-contained unit and built ONCE (layers memoize by reference).
@@ -280,10 +280,10 @@ function runLintCheck(opts) {
280
280
  const configInfo = markdownConfig ? ` (config: ${markdownConfig})` : "";
281
281
  yield* Effect.log(` ${CHECK_MARK} markdownlint-cli2${configInfo}`);
282
282
  } else yield* Effect.log(` ${BULLET} markdownlint-cli2: not installed`);
283
- const tsgoAvailable = yield* td.isAvailable(Tool.named("tsgo"));
284
283
  const tscAvailable = yield* td.isAvailable(Tool.named("tsc"));
285
- if (tsgoAvailable) yield* Effect.log(` ${CHECK_MARK} TypeScript (tsgo)`);
286
- else if (tscAvailable) yield* Effect.log(` ${CHECK_MARK} TypeScript (tsc)`);
284
+ const tsgoAvailable = yield* td.isAvailable(Tool.named("tsgo"));
285
+ if (tscAvailable) yield* Effect.log(` ${CHECK_MARK} TypeScript (tsc)`);
286
+ else if (tsgoAvailable) yield* Effect.log(` ${CHECK_MARK} TypeScript (tsgo)`);
287
287
  else yield* Effect.log(` ${BULLET} TypeScript: not installed`);
288
288
  if (hasMarkdownlintConfig) {
289
289
  if (markdownlintStatus.isUpToDate) yield* Effect.log(` ${CHECK_MARK} ${Lint.MARKDOWNLINT_CONFIG_PATH}: up-to-date`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@savvy-web/cli",
3
- "version": "2.5.3",
3
+ "version": "2.5.5",
4
4
  "private": false,
5
5
  "description": "The savvy CLI — unified commit, changeset, and lint commands for the Silk Suite",
6
6
  "homepage": "https://github.com/savvy-web/systems/tree/main/packages/cli",
@@ -33,12 +33,12 @@
33
33
  "dependencies": {
34
34
  "@effect/platform-node": "4.0.0-beta.107",
35
35
  "@effected/commands": "^0.4.0",
36
- "@effected/git": "^0.7.0",
36
+ "@effected/git": "^0.8.0",
37
37
  "@effected/jsonc": "^0.6.0",
38
38
  "@effected/templates": "^0.2.0",
39
- "@effected/workspaces": "^0.12.0",
39
+ "@effected/workspaces": "^0.13.0",
40
40
  "@effected/yaml": "^0.8.0",
41
- "@savvy-web/silk-effects": "5.7.2",
41
+ "@savvy-web/silk-effects": "5.8.1",
42
42
  "effect": "4.0.0-beta.107"
43
43
  }
44
44
  }