Any recommendations on how to migrate an existing Node project from using Semantic-UI to Fomantic-UI? I know Fomantic-UI is a fork of Semantic-UI and backward compatible, so I'm wondering if I can simply run:
- npm remove semantic-ui
- npm install fomantic-ui
Would I need do make any updates to the existing /semantic directory?
Thanks!
npm uninstall package_namethis is the npm code to uninstall or remove a package
to install it is:
npm install package_namein your case it will be
npm uninstall semantic-uinpm install fomantic-ui