From 5fb7c20470b2de47960b1d6fd4547790e52c8fa2 Mon Sep 17 00:00:00 2001 From: JBB0807 <104856796+JBB0807@users.noreply.github.com> Date: Fri, 11 Apr 2025 13:56:58 -0700 Subject: [PATCH] Initial Commit --- byte-camp-battle-snake-web/.gitignore => .gitignore | 0 README.md | 12 ++++++++++++ byte-camp-battle-snake-web/README.md | 12 ------------ .../eslint.config.js => eslint.config.js | 0 byte-camp-battle-snake-web/index.html => index.html | 0 .../package-lock.json => package-lock.json | 4 ++-- .../package.json => package.json | 2 +- .../public => public}/vite.svg | 0 {byte-camp-battle-snake-web/src => src}/App.css | 0 {byte-camp-battle-snake-web/src => src}/App.jsx | 0 .../src => src}/assets/react.svg | 0 {byte-camp-battle-snake-web/src => src}/index.css | 0 {byte-camp-battle-snake-web/src => src}/main.jsx | 0 .../vite.config.js => vite.config.js | 0 14 files changed, 15 insertions(+), 15 deletions(-) rename byte-camp-battle-snake-web/.gitignore => .gitignore (100%) delete mode 100644 byte-camp-battle-snake-web/README.md rename byte-camp-battle-snake-web/eslint.config.js => eslint.config.js (100%) rename byte-camp-battle-snake-web/index.html => index.html (100%) rename byte-camp-battle-snake-web/package-lock.json => package-lock.json (99%) rename byte-camp-battle-snake-web/package.json => package.json (93%) rename {byte-camp-battle-snake-web/public => public}/vite.svg (100%) rename {byte-camp-battle-snake-web/src => src}/App.css (100%) rename {byte-camp-battle-snake-web/src => src}/App.jsx (100%) rename {byte-camp-battle-snake-web/src => src}/assets/react.svg (100%) rename {byte-camp-battle-snake-web/src => src}/index.css (100%) rename {byte-camp-battle-snake-web/src => src}/main.jsx (100%) rename byte-camp-battle-snake-web/vite.config.js => vite.config.js (100%) diff --git a/byte-camp-battle-snake-web/.gitignore b/.gitignore similarity index 100% rename from byte-camp-battle-snake-web/.gitignore rename to .gitignore diff --git a/README.md b/README.md index e69de29..fd3b758 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,12 @@ +# React + Vite + +This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. + +Currently, two official plugins are available: + +- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh +- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh + +## Expanding the ESLint configuration + +If you are developing a production application, we recommend using TypeScript and enable type-aware lint rules. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project. diff --git a/byte-camp-battle-snake-web/README.md b/byte-camp-battle-snake-web/README.md deleted file mode 100644 index fd3b758..0000000 --- a/byte-camp-battle-snake-web/README.md +++ /dev/null @@ -1,12 +0,0 @@ -# React + Vite - -This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. - -Currently, two official plugins are available: - -- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh -- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh - -## Expanding the ESLint configuration - -If you are developing a production application, we recommend using TypeScript and enable type-aware lint rules. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project. diff --git a/byte-camp-battle-snake-web/eslint.config.js b/eslint.config.js similarity index 100% rename from byte-camp-battle-snake-web/eslint.config.js rename to eslint.config.js diff --git a/byte-camp-battle-snake-web/index.html b/index.html similarity index 100% rename from byte-camp-battle-snake-web/index.html rename to index.html diff --git a/byte-camp-battle-snake-web/package-lock.json b/package-lock.json similarity index 99% rename from byte-camp-battle-snake-web/package-lock.json rename to package-lock.json index a8338d9..31c798f 100644 --- a/byte-camp-battle-snake-web/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "byte-camp-battle-snake-web", + "name": "ISSP5-Front-End", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "byte-camp-battle-snake-web", + "name": "ISSP5-Front-End", "version": "0.0.0", "dependencies": { "react": "^19.0.0", diff --git a/byte-camp-battle-snake-web/package.json b/package.json similarity index 93% rename from byte-camp-battle-snake-web/package.json rename to package.json index f3f98f1..bb60511 100644 --- a/byte-camp-battle-snake-web/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "byte-camp-battle-snake-web", + "name": "ISSP5-Front-End", "private": true, "version": "0.0.0", "type": "module", diff --git a/byte-camp-battle-snake-web/public/vite.svg b/public/vite.svg similarity index 100% rename from byte-camp-battle-snake-web/public/vite.svg rename to public/vite.svg diff --git a/byte-camp-battle-snake-web/src/App.css b/src/App.css similarity index 100% rename from byte-camp-battle-snake-web/src/App.css rename to src/App.css diff --git a/byte-camp-battle-snake-web/src/App.jsx b/src/App.jsx similarity index 100% rename from byte-camp-battle-snake-web/src/App.jsx rename to src/App.jsx diff --git a/byte-camp-battle-snake-web/src/assets/react.svg b/src/assets/react.svg similarity index 100% rename from byte-camp-battle-snake-web/src/assets/react.svg rename to src/assets/react.svg diff --git a/byte-camp-battle-snake-web/src/index.css b/src/index.css similarity index 100% rename from byte-camp-battle-snake-web/src/index.css rename to src/index.css diff --git a/byte-camp-battle-snake-web/src/main.jsx b/src/main.jsx similarity index 100% rename from byte-camp-battle-snake-web/src/main.jsx rename to src/main.jsx diff --git a/byte-camp-battle-snake-web/vite.config.js b/vite.config.js similarity index 100% rename from byte-camp-battle-snake-web/vite.config.js rename to vite.config.js