@forwardimpact/pathway 0.25.25 → 0.25.26
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/package.json +3 -1
- package/src/index.js +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forwardimpact/pathway",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.26",
|
|
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": {
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"engineering"
|
|
21
21
|
],
|
|
22
22
|
"type": "module",
|
|
23
|
+
"main": "./src/index.js",
|
|
23
24
|
"bin": {
|
|
24
25
|
"fit-pathway": "./bin/fit-pathway.js"
|
|
25
26
|
},
|
|
@@ -34,6 +35,7 @@
|
|
|
34
35
|
"templates/"
|
|
35
36
|
],
|
|
36
37
|
"exports": {
|
|
38
|
+
".": "./src/index.js",
|
|
37
39
|
"./formatters": "./src/formatters/index.js",
|
|
38
40
|
"./commands": "./src/commands/index.js"
|
|
39
41
|
},
|
package/src/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// Public entry point for @forwardimpact/pathway.
|
|
2
|
+
// The primary consumption mode is the CLI (fit-pathway) — this
|
|
3
|
+
// re-export exists so the package conforms to the repo-wide layout
|
|
4
|
+
// contract (spec 390) and so consumers who import
|
|
5
|
+
// @forwardimpact/pathway directly receive the shared type
|
|
6
|
+
// definitions.
|
|
7
|
+
export * from "./types.js";
|