cluaupp 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/editors/vscode/package.json +1 -1
- package/package.json +7 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.2.1
|
|
6
|
+
|
|
7
|
+
- Pin `tree-sitter` 0.21.1 and `tree-sitter-c` 0.23.2 so `npm i -g cluaupp` no longer pulls `tree-sitter-c@0.23.6` (peerOptional `tree-sitter@^0.22.1`).
|
|
8
|
+
|
|
5
9
|
## 0.2.0
|
|
6
10
|
|
|
7
11
|
- CLI rewritten as a TypeScript collector-emitter pipeline: Tree-sitter collection, Rojo-mapped `require`s, ordered Luau blocks (Services → Requires → Types → Constants → Code), then optional StyLua / `luau-analyze`. Commands `init`, `build`, `watch`, `lsp`, and `intellisense` stay. `cluaupp build -i file.cpp -o out.luau --rojo default.project.json` is the single-file path.
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "cluaupp-diagnostics",
|
|
3
3
|
"displayName": "Cluaupp",
|
|
4
4
|
"description": "Cluaupp subset parse errors. C++ completion, hover, and go-to-definition come from clangd + include/cluaupp/roblox.hpp.",
|
|
5
|
-
"version": "0.2.
|
|
5
|
+
"version": "0.2.1",
|
|
6
6
|
"publisher": "kartzdev",
|
|
7
7
|
"engines": {
|
|
8
8
|
"vscode": "^1.74.0"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cluaupp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Cluaupp — the definitive merge of C++ and modern Luau. Source-to-source transpiler with first-class Roblox APIs.",
|
|
5
5
|
"author": "KartzDev",
|
|
6
6
|
"license": "MIT",
|
|
@@ -70,11 +70,15 @@
|
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"commander": "^15.0.0",
|
|
72
72
|
"comment-json": "^5.0.0",
|
|
73
|
-
"tree-sitter": "
|
|
74
|
-
"tree-sitter-
|
|
73
|
+
"tree-sitter": "0.21.1",
|
|
74
|
+
"tree-sitter-c": "0.23.2",
|
|
75
|
+
"tree-sitter-cpp": "0.23.4",
|
|
75
76
|
"vscode-languageserver": "^10.1.1",
|
|
76
77
|
"vscode-languageserver-textdocument": "^1.0.14"
|
|
77
78
|
},
|
|
79
|
+
"overrides": {
|
|
80
|
+
"tree-sitter-c": "0.23.2"
|
|
81
|
+
},
|
|
78
82
|
"devDependencies": {
|
|
79
83
|
"@types/node": "^22.20.3",
|
|
80
84
|
"tsx": "^4.23.13",
|