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