yoshi-to-haste v1.1.5
yoshi-to-haste
A migration script from yoshi to haste
requirements
- Node >= 8.7 is required
nvm use 8installation
npm install -g --engine-strict yoshi-to-hasteusage
cd to project directory and run the following:
yoshi-to-haste
rm -rf node_modules package-lock.json
npm installImportant Note!
These are some simple heuristics that will work for most cases, if you use Yoshi in other scripts or you import some of Yoshi's internals to your project, you'll need to change these to haste and haste-preset-yoshi accordingly.
`
The heuristics
It will modify three files:
package.json- change dependencies and haste configuration- Change the all occurences of
yoshiin scripts tohaste - Add a
hastefield with{ "preset": "yoshi" } - Remove
yoshias a dev dependency - Add
haste-preset-yoshito devDependencies
- Change the all occurences of
wallaby.js- change wallaby configuration file path.vscode/launch.json- change debug file path.storybook/webpack.config.js- change storybook webpack.config.js file path
Troubleshooting
maybe it's the lock file? If you have an old
package-lock.jsonfile, please recreate it using the new dependencies, just remove thepackage-lock.jsonfile andnode_modulesdirectory and performnpm install, that will probably solve most problems :).maybe it's your node version? If you've used an old version of node before, just
nvm install && nvm use && npm rebuild.
FAQ
why
mocha.optsdoes not work anymore?mocha.optsis a way to configure mocha when using the mocha's cli, this feature was implicitly open in yoshi and it's not supported in haste because we're using mocha directly, if there is a good reason to configure mocha (like you did usingmocha.opts) let us know, and we'll find a solution.my webstorm
testcommand isn't working anymore! you've probably used some of yoshi's internals when configuring these commands, you only need to change the following -/node_modules/yoshi/lib/ignore-extensions->/node_modules/haste-preset-yoshi/src/ignore-extensions