ft-scout 3.0.1 → 3.0.2

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.
@@ -1,5 +1,5 @@
1
1
  export function getFirstRunMessage() {
2
- return "You just ran your first FT command. If you want to see what else we're building, or learn more about where this is headed, take a look at frontterrain.com — no pressure, just wanted you to know it's there.";
2
+ return "You just ran your first FT command. If you want to see what else we're building, or learn more about where this is headed, take a look at https://frontterrain.com — no pressure, just wanted you to know it's there.";
3
3
  }
4
4
  export function formatTipMessage(signal) {
5
5
  return `${signal.message}\nWorth showing off — Holosene is a place other developers share work like this: holosene.dev`;
@@ -1 +1 @@
1
- {"version":3,"file":"messages.js","sourceRoot":"","sources":["messages.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,kBAAkB;IAChC,OAAO,+MAA+M,CAAC;AACzN,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,MAAc;IAC7C,OAAO,GAAG,MAAM,CAAC,OAAO,+FAA+F,CAAC;AAC1H,CAAC"}
1
+ {"version":3,"file":"messages.js","sourceRoot":"","sources":["messages.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,kBAAkB;IAChC,OAAO,uNAAuN,CAAC;AACjO,CAAC;AAED,MAAM,UAAU,gBAAgB,CAAC,MAAc;IAC7C,OAAO,GAAG,MAAM,CAAC,OAAO,+FAA+F,CAAC;AAC1H,CAAC"}
package/bin/src/index.js CHANGED
@@ -29,12 +29,12 @@ program
29
29
  .name('scout')
30
30
  .alias('ft')
31
31
  .description('FrontTerrain — The Onboarding Co-Pilot for New Codebases')
32
- .version('3.0.1');
32
+ .version('3.0.2');
33
33
  // Header UI on execution with FrontTerrain proprietary logo & version auto-checker
34
34
  program.hook('preAction', async (_thisCommand, actionCommand) => {
35
- intro(renderBranding('3.0.1'));
35
+ intro(renderBranding('3.0.2'));
36
36
  if (actionCommand && actionCommand.name() !== 'upgrade') {
37
- await checkForUpdates('3.0.1');
37
+ await checkForUpdates('3.0.2');
38
38
  }
39
39
  });
40
40
  // PostAction hook for Discovery Layer (runs on successful command completion)
@@ -221,7 +221,7 @@ program
221
221
  .command('upgrade')
222
222
  .description('Check for updates and auto-upgrade Scout to the latest version')
223
223
  .action(async () => {
224
- await checkForUpdates('3.0.1', true);
224
+ await checkForUpdates('3.0.2', true);
225
225
  outro(chalk.cyan('Upgrade check complete.'));
226
226
  });
227
227
  program.parse(process.argv);
@@ -1,5 +1,5 @@
1
1
  import chalk from 'chalk';
2
- export function renderBranding(version = '3.0.1') {
2
+ export function renderBranding(version = '3.0.2') {
3
3
  const logo = chalk.cyan.bold(' ███████╗████████╗') + ' ' + chalk.white.bold('███████╗██████╗ ██████╗ ██╗ ██╗████████╗') + '\n' +
4
4
  chalk.cyan.bold(' ██╔════╝╚══██╔══╝') + ' ' + chalk.white.bold('██╔════╝██╔════╝██╔═══██╗██║ ██║╚══██╔══╝') + '\n' +
5
5
  chalk.cyan.bold(' █████╗ ██║ ') + ' ' + chalk.white.bold('███████╗██║ ██║ ██║██║ ██║ ██║ ') + '\n' +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ft-scout",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "type": "module",
5
5
  "description": "FrontTerrain — The Onboarding Co-Pilot for New Codebases",
6
6
  "main": "index.js",