-
Notifications
You must be signed in to change notification settings - Fork 5
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
[CLI] Fix create plugin wizard #103
Conversation
- better typing - testing - validation
d934170
to
5333b35
Compare
"module": "CommonJS", | ||
"moduleResolution": "Node", | ||
"rootDir": "./", | ||
"outDir": "./dist" | ||
"outDir": "./dist", | ||
"paths": { | ||
"@dd/tools/*": ["./src/*"], | ||
"@dd/core/*": ["../core/src/*"] | ||
} |
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.
This config is slightly different from the other workspaces because we use ts-node
to run the CLI.
I'd love to have the exact same config everywhere, but it bite me a few times already trying to unify this.
Taking me hours every time I try to find a way, always reverting everything in the end.
Open to discuss if you have a very clear vision of it.
What and why?
yarn cli create-plugin
drifted a bit given we're not using it that much.We need to update/fix it, have it follow current standards and test it to ensure it remains as up to date as possible with the reste of the codebase's growth.
How?