You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in another initialized npm project, install the auto config repo and extend the config:
"auto": {
"extends": "@SCOPE",
}
do a dry-run release of the project npx auto shipit --dry-run
get below error:
⚠ warning Could not find plugin from path: $PROJECT/plugins/some-plugin.js
Expected behavior
When using auto.extend, the relative path-ed plugins from the configuration should be relative to itself and not the project that the auto config is installed into and extended in.
Additional context
I think a viable solution is to publish the plugins to npm, but that requires setting it up the auto config project to be a monorepo, and alias-ing the plugins so I can use itself to release itself.
The text was updated successfully, but these errors were encountered:
Describe the bug
When you make an external config of
auto
to be shared across multiple packages and specify a plugin that is relative path, the plugin is not found.To Reproduce
auto
's configpackage.json
auto
config repo and extend the config:npx auto shipit --dry-run
Expected behavior
When using
auto.extend
, the relative path-ed plugins from the configuration should be relative to itself and not the project that the auto config is installed into and extended in.Additional context
I think a viable solution is to publish the plugins to npm, but that requires setting it up the auto config project to be a monorepo, and alias-ing the plugins so I can use itself to release itself.
The text was updated successfully, but these errors were encountered: