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!
- Host: GitHub
- URL: https://github.com/mayurmarvel/vite-react-cleanup-script-for-windows-powershell
- Owner: mayurmarvel
- Created: 2022-11-14T16:16:41.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-14T16:25:13.000Z (over 3 years ago)
- Last Synced: 2025-08-07T07:11:14.791Z (11 months ago)
- Topics: cleanup, react, script, vite, windows
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```