From 50cdd3a9459e9e70f548280252edae38f4e43709 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B0=D0=BB=D0=B8=D0=BC=D0=BE=D0=B2=20=D0=A0=D1=83?= =?UTF-8?q?=D1=81=D1=82=D0=B0=D0=BC?= Date: Sat, 27 Dec 2025 18:04:01 +0300 Subject: [PATCH] V3 --- index.html | 2 +- package.json | 3 +++ App.tsx => src/App.tsx | 0 {components => src/components}/ConfigStep.tsx | 0 {components => src/components}/LayoutStep.tsx | 0 {components => src/components}/PreviewStep.tsx | 0 index.tsx => src/index.tsx | 0 {services => src/services}/geometryGenerator.ts | 0 8 files changed, 4 insertions(+), 1 deletion(-) rename App.tsx => src/App.tsx (100%) rename {components => src/components}/ConfigStep.tsx (100%) rename {components => src/components}/LayoutStep.tsx (100%) rename {components => src/components}/PreviewStep.tsx (100%) rename index.tsx => src/index.tsx (100%) rename {services => src/services}/geometryGenerator.ts (100%) diff --git a/index.html b/index.html index 960e673..d42b835 100644 --- a/index.html +++ b/index.html @@ -28,6 +28,6 @@
- + \ No newline at end of file diff --git a/package.json b/package.json index 264ea34..6290c6b 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,9 @@ "name": "printfit-organizer", "private": true, "version": "1.0.0", + "engines": { + "node": ">=20.0.0" + }, "type": "module", "scripts": { "dev": "vite", diff --git a/App.tsx b/src/App.tsx similarity index 100% rename from App.tsx rename to src/App.tsx diff --git a/components/ConfigStep.tsx b/src/components/ConfigStep.tsx similarity index 100% rename from components/ConfigStep.tsx rename to src/components/ConfigStep.tsx diff --git a/components/LayoutStep.tsx b/src/components/LayoutStep.tsx similarity index 100% rename from components/LayoutStep.tsx rename to src/components/LayoutStep.tsx diff --git a/components/PreviewStep.tsx b/src/components/PreviewStep.tsx similarity index 100% rename from components/PreviewStep.tsx rename to src/components/PreviewStep.tsx diff --git a/index.tsx b/src/index.tsx similarity index 100% rename from index.tsx rename to src/index.tsx diff --git a/services/geometryGenerator.ts b/src/services/geometryGenerator.ts similarity index 100% rename from services/geometryGenerator.ts rename to src/services/geometryGenerator.ts