Fix default.project.json to allow usage as submodule (#29)

* Fix default.project.json to allow usage as submodule

* Rename lua-promise to just promise

* Change promise to Promise
This commit is contained in:
Reselim 2021-03-19 18:50:11 -04:00 committed by GitHub
parent ef38a178bf
commit 49deee5d51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 20 deletions

View file

@ -1,24 +1,6 @@
{
"name": "lua-promise",
"name": "Promise",
"tree": {
"$className": "DataModel",
"ServerScriptService": {
"$className": "ServerScriptService",
"Lib": {
"$path": "lib"
}
},
"TestService": {
"$className": "TestService",
"$properties": {
"ExecuteWithStudioRun": true
},
"TestEZ": {
"$path": "modules/testez/src"
},
"run": {
"$path": "runTests.server.lua"
}
}
"$path": "lib"
}
}

24
test.project.json Normal file
View file

@ -0,0 +1,24 @@
{
"name": "Promise-test",
"tree": {
"$className": "DataModel",
"ServerScriptService": {
"$className": "ServerScriptService",
"Lib": {
"$path": "lib"
}
},
"TestService": {
"$className": "TestService",
"$properties": {
"ExecuteWithStudioRun": true
},
"TestEZ": {
"$path": "modules/testez/src"
},
"run": {
"$path": "runTests.server.lua"
}
}
}
}