From 62edef7389cf53e6f291006b5c679bc9dd77f618 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=84=B8=EC=A0=A4=EA=B7=80=20=EA=B3=A0=EC=96=91=EC=9D=B4?= =?UTF-8?q?=EB=93=A4?= <46598063+qwreey75@users.noreply.github.com> Date: Fri, 24 Dec 2021 18:16:53 +0900 Subject: [PATCH] update project json --- build.project.json | 9 --------- build.sh | 2 +- default.project.json | 20 ++++---------------- test.project.json | 21 +++++++++++++++++++++ test.sh | 1 + 5 files changed, 27 insertions(+), 26 deletions(-) delete mode 100644 build.project.json create mode 100644 test.project.json create mode 100644 test.sh diff --git a/build.project.json b/build.project.json deleted file mode 100644 index 5fd06aa..0000000 --- a/build.project.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "name": "Plugin", - "tree": { - "$properties": { - "Name": "quad" - }, - "$path": "src" - } -} \ No newline at end of file diff --git a/build.sh b/build.sh index b3e96fa..fa3e5ec 100644 --- a/build.sh +++ b/build.sh @@ -1 +1 @@ -rojo build build.project.json -o build.rbxmx \ No newline at end of file +rojo build default.project.json -o build.rbxmx \ No newline at end of file diff --git a/default.project.json b/default.project.json index 5c9d7da..3d29887 100644 --- a/default.project.json +++ b/default.project.json @@ -1,21 +1,9 @@ { "name": "Plugin", "tree": { - "$className": "DataModel", - "ReplicatedStorage": { - "$className": "ReplicatedStorage", - "Quad": { - "$path": "src" - } - }, - "StarterGui": { - "$className": "StarterGui", - "QuadTesting": { - "$className": "ScreenGui", - "testScript": { - "$path": "testScript.client.lua" - } - } - } + "$properties": { + "Name": "Quad" + }, + "$path": "src" } } \ No newline at end of file diff --git a/test.project.json b/test.project.json new file mode 100644 index 0000000..5085496 --- /dev/null +++ b/test.project.json @@ -0,0 +1,21 @@ +{ + "name": "Plugin", + "tree": { + "$className": "DataModel", + "ReplicatedStorage": { + "$className": "ReplicatedStorage", + "Quad": { + "$path": "./" + } + }, + "StarterGui": { + "$className": "StarterGui", + "QuadTesting": { + "$className": "ScreenGui", + "testScript": { + "$path": "testScript.client.lua" + } + } + } + } +} \ No newline at end of file diff --git a/test.sh b/test.sh new file mode 100644 index 0000000..88a5804 --- /dev/null +++ b/test.sh @@ -0,0 +1 @@ +rojo serve test.project.json \ No newline at end of file