@exellix/graph-composer 2.5.1 → 2.5.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.5.2
4
+
5
+ ### Fixed
6
+
7
+ - Resolve `@exellix/ai-skills` analysis directory from the package main entry instead of `./package.json` (also not exported).
8
+
3
9
  ## 2.5.1
4
10
 
5
11
  ### Fixed
@@ -3,8 +3,8 @@ import { dirname, join } from "node:path";
3
3
  import { pathToFileURL } from "node:url";
4
4
  const require = createRequire(import.meta.url);
5
5
  function aiSkillsAnalysisDir() {
6
- const pkgJson = require.resolve("@exellix/ai-skills/package.json");
7
- return join(dirname(pkgJson), "dist/analysis");
6
+ const entry = require.resolve("@exellix/ai-skills");
7
+ return join(dirname(entry), "analysis");
8
8
  }
9
9
  async function loadAiSkillsAnalysisModules() {
10
10
  const dir = aiSkillsAnalysisDir();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exellix/graph-composer",
3
- "version": "2.5.1",
3
+ "version": "2.5.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -64,9 +64,9 @@
64
64
  },
65
65
  "homepage": "https://github.com/woroces/graph-composer#readme",
66
66
  "peerDependencies": {
67
- "@exellix/ai-skills": "^6.1.0",
68
- "@exellix/ai-tasks": "^8.6.0",
69
- "@exellix/graph-engine": "^7.7.3"
67
+ "@exellix/ai-skills": "^6.2.1",
68
+ "@exellix/ai-tasks": "^8.6.2",
69
+ "@exellix/graph-engine": "^7.7.5"
70
70
  },
71
71
  "peerDependenciesMeta": {
72
72
  "@exellix/graph-engine": {