50c 2.5.1 → 2.5.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.
- package/lib/index.js +5 -2
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -42,8 +42,11 @@ async function getTools() {
|
|
|
42
42
|
...beacon.ROADMAP_TOOLS, // Roadmap is FREE
|
|
43
43
|
];
|
|
44
44
|
|
|
45
|
-
// STARTER tier
|
|
46
|
-
if (config.packs.beacon)
|
|
45
|
+
// STARTER tier (exclude roadmap - already added above)
|
|
46
|
+
if (config.packs.beacon) {
|
|
47
|
+
const beaconNonRoadmap = beacon.BEACON_TOOLS.filter(t => !t.name.startsWith('roadmap_'));
|
|
48
|
+
tools.push(...beaconNonRoadmap);
|
|
49
|
+
}
|
|
47
50
|
|
|
48
51
|
// PRO tier
|
|
49
52
|
if (config.packs.labs) tools.push(...labs.LABS_TOOLS);
|