-
-
Notifications
You must be signed in to change notification settings - Fork 19
Description
Hello, and thank you for this wonderful project!
I'm just a junior dev trying to figure out how to set up codemods for our company's design system. I'd been playing around with setting up a script in our package which would use the jsCodeshift executable to run the transforms I'd written, but then I found hypermod and thought that could potentially save me from myself and I could instruct consumers to run something like:
npx @hypermod/cli --packages @myob/[email protected] ./src
However, our package @myob/myob-widgets
is a private package, so I'm imagining that's why I'm getting the following error:
Error: Unable to locate package from Hypermod Community or NPM.
Make sure the package name "@myob/myob-widgets" is correct and try again.
Am I right in thinking that it won't work because @myob/myob-widgets
is a private package? And are my options therefore to either (a) create a separate public NPM package with transforms which hypermod would be able to access, or (b) try to set up a script myself to run the transforms with jsCodeshift in our private package.
Thanks for your help, and my apologies if this question is in the wrong place / wildly off the mark