@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.
- package/dist/process/runner.js +5 -1
- package/package.json +4 -4
package/dist/process/runner.js
CHANGED
|
@@ -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(
|
|
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.
|
|
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.
|
|
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",
|