@rowan-agent/agent 0.9.19 → 0.9.20

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -5072,7 +5072,10 @@ function getJiti() {
5072
5072
  sharedJiti ??= createJiti(import.meta.url || process.cwd(), {
5073
5073
  fsCache: false,
5074
5074
  moduleCache: false,
5075
- tryNative: false,
5075
+ // Extensions ship as authored, including TypeScript. Native loading lets a
5076
+ // host that supports it run them without a transpile step; an import that
5077
+ // only the alias map can resolve still falls back to jiti's transform.
5078
+ tryNative: true,
5076
5079
  alias: jitiAliases()
5077
5080
  });
5078
5081
  return sharedJiti;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rowan-agent/agent",
3
- "version": "0.9.19",
3
+ "version": "0.9.20",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",