-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix cli dependencies and remove workspaces #37
Conversation
import { getTypedStoatConfig, readStoatConfig } from '../../../../action/src/configHelpers'; | ||
import {StoatConfigSchema} from "../../../../action/src/schemas/stoatConfigSchema"; | ||
import { getTemplate } from '../../../../action/src/templateHelpers'; | ||
import { Template } from '../../../../action/src/types'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am surprised that this works. Are the dependencies messed up? Like if the templateHelpers
depends on a library that's only in the action
project, the cli
project won't have that, and the code will fail.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is a real issue, based on the latest build failure.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it looks like the "correct" thing is to install the action first
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice.
No description provided.