An open API service indexing awesome lists of open source software.

https://github.com/mayurmarvel/vite-react-cleanup-script-for-windows-powershell

This is a Starter Cleanup Script to remove un-necessary codes and provide a Clean Boilerplate!
https://github.com/mayurmarvel/vite-react-cleanup-script-for-windows-powershell

cleanup react script vite windows

Last synced: 2 months ago
JSON representation

This is a Starter Cleanup Script to remove un-necessary codes and provide a Clean Boilerplate!

Awesome Lists containing this project

README

          

# Vite + React Cleanup Script for Windows Powershell
This is a Starter Cleanup Script to remove un-necessary codes and provide a Clean Boilerplate!

### COMMANDS

copy this entire script and RUN 🚀

```shell
Remove-Item ./src/assets/react.svg ;

Remove-Item ./public/vite.svg ;

Remove-Item ./src/App.jsx;

"import { useState } from 'react'
import './App.css'

function App() {
return(

Vite + React


)
}

export default App" | Out-File -FilePath ./src/App.jsx ;

Clear-Content -Path ./src/index.css ;
Clear-Content -Path ./src/app.css ;

New-Item -Path ./src/components -ItemType Directory ;
New-Item -Path ./src/utils -ItemType Directory
```