@travetto/cli 8.0.0-alpha.30 → 8.0.0-alpha.32

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 (3) hide show
  1. package/README.md +14 -10
  2. package/package.json +3 -3
  3. package/src/scm.ts +1 -0
package/README.md CHANGED
@@ -29,8 +29,10 @@ Commands:
29
29
  email:editor Start the email template editor service for interactive preview and testing.
30
30
  email:test Render and send a template file to a target recipient for quick validation.
31
31
  firestore:indexes Generate the Firestore composite indexes JSON for all registered models.
32
- lint Run Biome linter/formatter for the workspace or changed files.
33
- lint:register Generate the workspace Biome configuration entry file.
32
+ lint:check Run oxlint linter for the workspace or changed files.
33
+ lint:format Run oxfmt formatter for the workspace or changed files.
34
+ lint:register Generate the workspace oxlint, oxfmt, and cspell configuration entry files.
35
+ lint:spell Run cspell spell checker for the workspace or changed files.
34
36
  llm:support:execute Execute llm-support operations with dry-run by default.
35
37
  llm:support:inline Inline and compile reference snippets for llm-support packaging.
36
38
  llm:support:mcp Minimal MCP stdio server for llm-support tools.
@@ -582,12 +584,12 @@ Options:
582
584
  Available Services
583
585
  --------------------
584
586
  * dynamodb@3.3.0
585
- * elasticsearch@9.2.8
587
+ * elasticsearch@9.5.2
586
588
  * firestore@latest
587
589
  * mongodb@8.3
588
- * mysql@9.6
589
- * postgresql@18.3
590
- * redis@8.4
590
+ * mysql@9.7
591
+ * postgresql@18.6
592
+ * redis@8.10
591
593
  * s3@4.12.4
592
594
  ```
593
595
 
@@ -600,12 +602,12 @@ $ trv service status
600
602
  Service Version Status
601
603
  -------------------------------------------------
602
604
  dynamodb 3.3.0 Running 93af422e793a
603
- elasticsearch 9.2.8 Running ed76ee063d13
605
+ elasticsearch 9.5.2 Running ed76ee063d13
604
606
  firestore latest Running feec2e5e95b4
605
607
  mongodb 8.3 Running 5513eba6734e
606
- mysql 9.6 Running 307bc66d442a
607
- postgresql 18.3 Running e78291e71040
608
- redis 8.4 Running 77ba279b4e30
608
+ mysql 9.7 Running 307bc66d442a
609
+ postgresql 18.6 Running e78291e71040
610
+ redis 8.10 Running 77ba279b4e30
609
611
  s3 4.12.4 Running fdacfc55b9e3
610
612
  ```
611
613
 
@@ -618,6 +620,8 @@ import type { ServiceDescriptor } from '@travetto/cli';
618
620
 
619
621
  const version = process.env.MONGO_VERSION || '8.3';
620
622
 
623
+ /* cspell:words orbstack pthread rseq glibc TUNABLES */
624
+
621
625
  export const service: ServiceDescriptor = {
622
626
  name: 'mongodb',
623
627
  version,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@travetto/cli",
3
- "version": "8.0.0-alpha.30",
3
+ "version": "8.0.0-alpha.32",
4
4
  "type": "module",
5
5
  "description": "CLI infrastructure for Travetto framework",
6
6
  "keywords": [
@@ -29,8 +29,8 @@
29
29
  "directory": "module/cli"
30
30
  },
31
31
  "dependencies": {
32
- "@travetto/schema": "^8.0.0-alpha.24",
33
- "@travetto/terminal": "^8.0.0-alpha.22"
32
+ "@travetto/schema": "^8.0.0-alpha.26",
33
+ "@travetto/terminal": "^8.0.0-alpha.23"
34
34
  },
35
35
  "travetto": {
36
36
  "displayName": "Command Line Interface",
package/src/scm.ts CHANGED
@@ -38,6 +38,7 @@ export class CliScmUtil {
38
38
  * @returns
39
39
  */
40
40
  static async findLastRelease(): Promise<string | undefined> {
41
+ // cspell:words oneline
41
42
  const result = await ExecUtil.getResult(spawn('git', ['log', '--pretty=oneline'], { cwd: Runtime.workspace.path }));
42
43
  return result.stdout
43
44
  .split(/\n/)