From 9a13335a17e95f12da95223508eb1923dfd6d933 Mon Sep 17 00:00:00 2001 From: bhushan6 Date: Sat, 12 Aug 2023 00:33:12 +0530 Subject: [PATCH] migrates to vite --- new/.eslintrc.cjs => .eslintrc.cjs | 0 new/.gitignore => .gitignore | 0 new/README.md => README.md | 0 new/index.html => index.html | 0 new/package-lock.json => package-lock.json | 0 new/package.json => package.json | 0 {new/public => public}/vite.svg | 0 {new/src => src}/App.css | 0 {new/src => src}/App.jsx | 0 {new/src => src}/assets/react.svg | 0 {new/src => src}/components/3D/Brick.jsx | 0 {new/src => src}/components/3D/BrickCursor.jsx | 0 {new/src => src}/components/3D/BrickOutline.jsx | 0 {new/src => src}/components/3D/ChangeColor.jsx | 0 {new/src => src}/components/3D/ControlsWrapper.jsx | 0 {new/src => src}/components/3D/DeleteBrick.jsx | 0 {new/src => src}/components/3D/InfoPanel.jsx | 0 {new/src => src}/components/3D/LegoRoom.jsx | 0 {new/src => src}/components/3D/Lights.jsx | 0 {new/src => src}/components/3D/Scene.jsx | 0 {new/src => src}/components/3D/Select/index.jsx | 0 {new/src => src}/components/3D/Shadow.jsx | 0 {new/src => src}/components/3D/Translate.jsx | 0 {new/src => src}/components/3D/Workspace.jsx | 0 {new/src => src}/components/3D/index.js | 0 {new/src => src}/components/UI/Dialog/DialogBox.jsx | 0 {new/src => src}/components/UI/Dialog/dialogbox.css | 0 {new/src => src}/components/UI/Panel/Left Panel/index.jsx | 0 {new/src => src}/components/UI/Panel/Right Panel/index.jsx | 0 {new/src => src}/components/UI/index.js | 0 {new/src => src}/index.css | 0 {new/src => src}/main.jsx | 0 {new/src => src}/store/index.js | 0 {new/src => src}/utils/constants.js | 0 {new/src => src}/utils/helpers.js | 0 {new/src => src}/utils/hooks.js | 0 {new/src => src}/utils/index.js | 0 new/vite.config.js => vite.config.js | 0 38 files changed, 0 insertions(+), 0 deletions(-) rename new/.eslintrc.cjs => .eslintrc.cjs (100%) rename new/.gitignore => .gitignore (100%) rename new/README.md => README.md (100%) rename new/index.html => index.html (100%) rename new/package-lock.json => package-lock.json (100%) rename new/package.json => package.json (100%) rename {new/public => public}/vite.svg (100%) rename {new/src => src}/App.css (100%) rename {new/src => src}/App.jsx (100%) rename {new/src => src}/assets/react.svg (100%) rename {new/src => src}/components/3D/Brick.jsx (100%) rename {new/src => src}/components/3D/BrickCursor.jsx (100%) rename {new/src => src}/components/3D/BrickOutline.jsx (100%) rename {new/src => src}/components/3D/ChangeColor.jsx (100%) rename {new/src => src}/components/3D/ControlsWrapper.jsx (100%) rename {new/src => src}/components/3D/DeleteBrick.jsx (100%) rename {new/src => src}/components/3D/InfoPanel.jsx (100%) rename {new/src => src}/components/3D/LegoRoom.jsx (100%) rename {new/src => src}/components/3D/Lights.jsx (100%) rename {new/src => src}/components/3D/Scene.jsx (100%) rename {new/src => src}/components/3D/Select/index.jsx (100%) rename {new/src => src}/components/3D/Shadow.jsx (100%) rename {new/src => src}/components/3D/Translate.jsx (100%) rename {new/src => src}/components/3D/Workspace.jsx (100%) rename {new/src => src}/components/3D/index.js (100%) rename {new/src => src}/components/UI/Dialog/DialogBox.jsx (100%) rename {new/src => src}/components/UI/Dialog/dialogbox.css (100%) rename {new/src => src}/components/UI/Panel/Left Panel/index.jsx (100%) rename {new/src => src}/components/UI/Panel/Right Panel/index.jsx (100%) rename {new/src => src}/components/UI/index.js (100%) rename {new/src => src}/index.css (100%) rename {new/src => src}/main.jsx (100%) rename {new/src => src}/store/index.js (100%) rename {new/src => src}/utils/constants.js (100%) rename {new/src => src}/utils/helpers.js (100%) rename {new/src => src}/utils/hooks.js (100%) rename {new/src => src}/utils/index.js (100%) rename new/vite.config.js => vite.config.js (100%) diff --git a/new/.eslintrc.cjs b/.eslintrc.cjs similarity index 100% rename from new/.eslintrc.cjs rename to .eslintrc.cjs diff --git a/new/.gitignore b/.gitignore similarity index 100% rename from new/.gitignore rename to .gitignore diff --git a/new/README.md b/README.md similarity index 100% rename from new/README.md rename to README.md diff --git a/new/index.html b/index.html similarity index 100% rename from new/index.html rename to index.html diff --git a/new/package-lock.json b/package-lock.json similarity index 100% rename from new/package-lock.json rename to package-lock.json diff --git a/new/package.json b/package.json similarity index 100% rename from new/package.json rename to package.json diff --git a/new/public/vite.svg b/public/vite.svg similarity index 100% rename from new/public/vite.svg rename to public/vite.svg diff --git a/new/src/App.css b/src/App.css similarity index 100% rename from new/src/App.css rename to src/App.css diff --git a/new/src/App.jsx b/src/App.jsx similarity index 100% rename from new/src/App.jsx rename to src/App.jsx diff --git a/new/src/assets/react.svg b/src/assets/react.svg similarity index 100% rename from new/src/assets/react.svg rename to src/assets/react.svg diff --git a/new/src/components/3D/Brick.jsx b/src/components/3D/Brick.jsx similarity index 100% rename from new/src/components/3D/Brick.jsx rename to src/components/3D/Brick.jsx diff --git a/new/src/components/3D/BrickCursor.jsx b/src/components/3D/BrickCursor.jsx similarity index 100% rename from new/src/components/3D/BrickCursor.jsx rename to src/components/3D/BrickCursor.jsx diff --git a/new/src/components/3D/BrickOutline.jsx b/src/components/3D/BrickOutline.jsx similarity index 100% rename from new/src/components/3D/BrickOutline.jsx rename to src/components/3D/BrickOutline.jsx diff --git a/new/src/components/3D/ChangeColor.jsx b/src/components/3D/ChangeColor.jsx similarity index 100% rename from new/src/components/3D/ChangeColor.jsx rename to src/components/3D/ChangeColor.jsx diff --git a/new/src/components/3D/ControlsWrapper.jsx b/src/components/3D/ControlsWrapper.jsx similarity index 100% rename from new/src/components/3D/ControlsWrapper.jsx rename to src/components/3D/ControlsWrapper.jsx diff --git a/new/src/components/3D/DeleteBrick.jsx b/src/components/3D/DeleteBrick.jsx similarity index 100% rename from new/src/components/3D/DeleteBrick.jsx rename to src/components/3D/DeleteBrick.jsx diff --git a/new/src/components/3D/InfoPanel.jsx b/src/components/3D/InfoPanel.jsx similarity index 100% rename from new/src/components/3D/InfoPanel.jsx rename to src/components/3D/InfoPanel.jsx diff --git a/new/src/components/3D/LegoRoom.jsx b/src/components/3D/LegoRoom.jsx similarity index 100% rename from new/src/components/3D/LegoRoom.jsx rename to src/components/3D/LegoRoom.jsx diff --git a/new/src/components/3D/Lights.jsx b/src/components/3D/Lights.jsx similarity index 100% rename from new/src/components/3D/Lights.jsx rename to src/components/3D/Lights.jsx diff --git a/new/src/components/3D/Scene.jsx b/src/components/3D/Scene.jsx similarity index 100% rename from new/src/components/3D/Scene.jsx rename to src/components/3D/Scene.jsx diff --git a/new/src/components/3D/Select/index.jsx b/src/components/3D/Select/index.jsx similarity index 100% rename from new/src/components/3D/Select/index.jsx rename to src/components/3D/Select/index.jsx diff --git a/new/src/components/3D/Shadow.jsx b/src/components/3D/Shadow.jsx similarity index 100% rename from new/src/components/3D/Shadow.jsx rename to src/components/3D/Shadow.jsx diff --git a/new/src/components/3D/Translate.jsx b/src/components/3D/Translate.jsx similarity index 100% rename from new/src/components/3D/Translate.jsx rename to src/components/3D/Translate.jsx diff --git a/new/src/components/3D/Workspace.jsx b/src/components/3D/Workspace.jsx similarity index 100% rename from new/src/components/3D/Workspace.jsx rename to src/components/3D/Workspace.jsx diff --git a/new/src/components/3D/index.js b/src/components/3D/index.js similarity index 100% rename from new/src/components/3D/index.js rename to src/components/3D/index.js diff --git a/new/src/components/UI/Dialog/DialogBox.jsx b/src/components/UI/Dialog/DialogBox.jsx similarity index 100% rename from new/src/components/UI/Dialog/DialogBox.jsx rename to src/components/UI/Dialog/DialogBox.jsx diff --git a/new/src/components/UI/Dialog/dialogbox.css b/src/components/UI/Dialog/dialogbox.css similarity index 100% rename from new/src/components/UI/Dialog/dialogbox.css rename to src/components/UI/Dialog/dialogbox.css diff --git a/new/src/components/UI/Panel/Left Panel/index.jsx b/src/components/UI/Panel/Left Panel/index.jsx similarity index 100% rename from new/src/components/UI/Panel/Left Panel/index.jsx rename to src/components/UI/Panel/Left Panel/index.jsx diff --git a/new/src/components/UI/Panel/Right Panel/index.jsx b/src/components/UI/Panel/Right Panel/index.jsx similarity index 100% rename from new/src/components/UI/Panel/Right Panel/index.jsx rename to src/components/UI/Panel/Right Panel/index.jsx diff --git a/new/src/components/UI/index.js b/src/components/UI/index.js similarity index 100% rename from new/src/components/UI/index.js rename to src/components/UI/index.js diff --git a/new/src/index.css b/src/index.css similarity index 100% rename from new/src/index.css rename to src/index.css diff --git a/new/src/main.jsx b/src/main.jsx similarity index 100% rename from new/src/main.jsx rename to src/main.jsx diff --git a/new/src/store/index.js b/src/store/index.js similarity index 100% rename from new/src/store/index.js rename to src/store/index.js diff --git a/new/src/utils/constants.js b/src/utils/constants.js similarity index 100% rename from new/src/utils/constants.js rename to src/utils/constants.js diff --git a/new/src/utils/helpers.js b/src/utils/helpers.js similarity index 100% rename from new/src/utils/helpers.js rename to src/utils/helpers.js diff --git a/new/src/utils/hooks.js b/src/utils/hooks.js similarity index 100% rename from new/src/utils/hooks.js rename to src/utils/hooks.js diff --git a/new/src/utils/index.js b/src/utils/index.js similarity index 100% rename from new/src/utils/index.js rename to src/utils/index.js diff --git a/new/vite.config.js b/vite.config.js similarity index 100% rename from new/vite.config.js rename to vite.config.js