rm is not recognized as an internal or external command - Google Search

PHOTO EMBED

Fri Sep 08 2023 15:53:19 GMT+0000 (Coordinated Universal Time)

Saved by @TheHutt #shell

rm is only meant to be used in UNIX systems. If you see that issue on Windows,
then you either need to run your command through Git Bash 
or just install the following npm library:

************************************
npm install --save-dev rimraf mkdirp
************************************

Make sure you then replace the UNIX parts like the examples bellow:

before:
"build": "rm -rf ./build && mkdir ./build && babel -d ./build ./src"

after:
"build": "rimraf ./build && mkdirp ./build && babel -d ./build ./src"
content_copyCOPY

https://www.google.com/search?q