@karmaniverous/jeeves-meta 0.13.9 → 0.13.10
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/cli/jeeves-meta/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -12393,7 +12393,7 @@ function registerSynthesizeRoute(app, deps) {
|
|
|
12393
12393
|
const { config, watcher, queue } = deps;
|
|
12394
12394
|
let targetPath;
|
|
12395
12395
|
if (body.path) {
|
|
12396
|
-
targetPath = body.path;
|
|
12396
|
+
targetPath = resolveMetaDir(body.path);
|
|
12397
12397
|
}
|
|
12398
12398
|
else {
|
|
12399
12399
|
// Discover stalest candidate
|
package/dist/index.js
CHANGED
|
@@ -11896,7 +11896,7 @@ function registerSynthesizeRoute(app, deps) {
|
|
|
11896
11896
|
const { config, watcher, queue } = deps;
|
|
11897
11897
|
let targetPath;
|
|
11898
11898
|
if (body.path) {
|
|
11899
|
-
targetPath = body.path;
|
|
11899
|
+
targetPath = resolveMetaDir(body.path);
|
|
11900
11900
|
}
|
|
11901
11901
|
else {
|
|
11902
11902
|
// Discover stalest candidate
|