-
Notifications
You must be signed in to change notification settings - Fork 70
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
feat(cli): new subcommands #283
feat(cli): new subcommands #283
Conversation
another option is to export and/or move the funcitons called in previously - this was marked as a draft - but the point of this pr is to have a discussion so i moved it back to |
bbc986f
to
dd6f02f
Compare
It's a great idea @waynenilsen ! I think we want to have a command for all the steps of the build process + one command that will run the pipeline ( |
yes i can take care of it |
1aaac6f
to
de9a81f
Compare
### Problem Statement We may want to use parts of this build system with parts of our own build system. I may have use of using my own build script to call rollup and tsc. ### Solution To start this conversation I suggest we make new subcommands for validating and doing other things step-by-step. This is somewhat designed as a sketch to gather feedback and see if you are interested in this kind of work. ### How has this been tested? starting to manually run some of the tests that run in CI noticed a bug something going on with CI build was not working for some reason --- [related issue](near#280)
de9a81f
to
dff56bc
Compare
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.
Looks good to me! Yes this is a great help to run one specific step of the build process. Especially for advanced users and near-sdk-js maintainers
Problem Statement
We may want to use parts of this build system with parts of our own build system. I may have use of using my own build script to call rollup and tsc.
Solution
To start this conversation I suggest we make new subcommands for validating and doing other things step-by-step. This is somewhat designed as a sketch to gather feedback and see if you are interested in this kind of work.
How has this been tested?
ok I tested out with my contract, this should work fine, will take another look at unit tests
related issue