rojo-rbx / vscode-rojo

Visual Studio Code plugin for Rojo
https://marketplace.visualstudio.com/items?itemName=evaera.vscode-rojo
Mozilla Public License 2.0
36 stars 23 forks source link

Is it just me, or is building broken? #30

Closed CodePidgy closed 4 years ago

CodePidgy commented 4 years ago

So, Rojo can't build to .rbxl, I get that. But is there an option to choose the build type? I haven't been able to find it, and so took it upon myself to pry open the code of the extension and solve it. I changed 1 character and now it works. Am I missing something or is this the only to solve this issue?

In V05.js, I changed: "const outputFile = ${outputConfig}.${this.isConfigRootDataModel() ? "rbxl" : "rbxm"};" to "const outputFile = ${outputConfig}.${this.isConfigRootDataModel() ? "rbxlx" : "rbxm"};"

evaera commented 4 years ago

Duplicate of #23