@forwardimpact/pathway 0.25.11 → 0.25.15
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/bin/fit-pathway.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forwardimpact/pathway",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.15",
|
|
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": {
|
|
@@ -50,7 +50,8 @@
|
|
|
50
50
|
"yaml": "^2.8.3"
|
|
51
51
|
},
|
|
52
52
|
"engines": {
|
|
53
|
-
"bun": ">=1.2.0"
|
|
53
|
+
"bun": ">=1.2.0",
|
|
54
|
+
"node": ">=18.0.0"
|
|
54
55
|
},
|
|
55
56
|
"publishConfig": {
|
|
56
57
|
"access": "public"
|
|
@@ -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
|
|
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
|
|
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
|
-
|
|
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}..."
|