@forwardimpact/pathway 0.25.11 → 0.25.12

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,4 +1,4 @@
1
- #!/usr/bin/env bun
1
+ #!/usr/bin/env node
2
2
  /**
3
3
  * Engineering Pathway CLI
4
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forwardimpact/pathway",
3
- "version": "0.25.11",
3
+ "version": "0.25.12",
4
4
  "description": "Career progression web app and CLI for exploring roles and generating agent teams",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -2,7 +2,7 @@
2
2
  # {{{frameworkTitle}}} — Local Install
3
3
  # Generated by @forwardimpact/pathway v{{{version}}}
4
4
  #
5
- # Installs fit-pathway globally via bun and downloads organization data
5
+ # Installs fit-pathway globally via npm and downloads organization data
6
6
  # to ~/.fit/data/pathway/.
7
7
  #
8
8
  # Usage:
@@ -13,11 +13,12 @@ set -euo pipefail
13
13
  SITE_URL="{{{siteUrl}}}"
14
14
  INSTALL_DIR="${HOME}/.fit/data/pathway"
15
15
 
16
- command -v bun >/dev/null 2>&1 || { echo "Error: Bun 1.2+ is required. https://bun.sh"; exit 1; }
16
+ command -v node >/dev/null 2>&1 || { echo "Error: Node.js 18+ is required. https://nodejs.org"; exit 1; }
17
+ command -v npm >/dev/null 2>&1 || { echo "Error: npm is required. https://nodejs.org"; exit 1; }
17
18
 
18
19
  # Install fit-pathway globally (provides the fit-pathway binary on PATH)
19
20
  echo "Installing @forwardimpact/pathway globally..."
20
- bun install -g @forwardimpact/pathway@{{{version}}}
21
+ npm install -g @forwardimpact/pathway@{{{version}}}
21
22
 
22
23
  # Download organization data to ~/.fit/data/pathway/
23
24
  echo "Downloading organization data to ${INSTALL_DIR}..."