github coderaiser/cloudcmd v14.8.0
cloudcmd v14.8.0

latest releases: v18.4.0, v18.3.0, v18.2.1...
4 years ago

API Changes in UserMenu

Changed two API calls of IO that was mentioned in a User Menu Cookbook:

  • IO.mv;
  • IO.cp;

Anyways you should change nothing in your .cloudcmd.menu.js files, because of @putout/plugin-cloudcmd. It will change:

await IO.mv({
    from: dirPath,
    to: mp3Dir,
    names: mp3Names,
});

Into

await IO.move(dirPath, mp3Dir, mp3Names);

For you, before running the code using putout code transfomer :).

feature

  • (cloudcmd) IO.cp -> IO.copy
  • (cloudcmd) IO.mv -> IO.move
  • (package) find-up v5.0.0

Don't miss a new cloudcmd release

NewReleases is sending notifications on new releases.