@openfn/cli 0.0.34 → 0.0.35

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.
@@ -131,7 +131,11 @@ var loadTransformOptions = async (opts, log) => {
131
131
  const path5 = await resolveSpecifierPath(pattern, opts.repoDir, log);
132
132
  if (path5) {
133
133
  try {
134
- exports = await preloadAdaptorExports(path5, log);
134
+ exports = await preloadAdaptorExports(
135
+ path5,
136
+ opts.useAdaptorsMonorepo,
137
+ log
138
+ );
135
139
  } catch (e) {
136
140
  log.error(`Failed to load adaptor typedefs from path ${path5}`);
137
141
  log.error(e);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openfn/cli",
3
- "version": "0.0.34",
3
+ "version": "0.0.35",
4
4
  "description": "CLI devtools for the openfn toolchain.",
5
5
  "engines": {
6
6
  "node": ">=18",
@@ -41,10 +41,10 @@
41
41
  "rimraf": "^3.0.2",
42
42
  "treeify": "^1.1.0",
43
43
  "yargs": "^17.5.1",
44
- "@openfn/compiler": "0.0.28",
45
- "@openfn/describe-package": "0.0.15",
44
+ "@openfn/compiler": "0.0.29",
46
45
  "@openfn/logger": "0.0.12",
47
- "@openfn/runtime": "0.0.21"
46
+ "@openfn/runtime": "0.0.21",
47
+ "@openfn/describe-package": "0.0.16"
48
48
  },
49
49
  "files": [
50
50
  "dist",