@defold-typescript/cli 0.4.2 → 0.4.3
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/dist/bin.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/src/init.ts +1 -1
package/dist/bin.js
CHANGED
|
@@ -335,7 +335,7 @@ var BIOME_JSON_CONTENT = {
|
|
|
335
335
|
}
|
|
336
336
|
};
|
|
337
337
|
var VSCODE_EXTENSIONS_CONTENT = {
|
|
338
|
-
recommendations: ["sumneko.lua", "
|
|
338
|
+
recommendations: ["sumneko.lua", "astronachos.defold"],
|
|
339
339
|
unwantedRecommendations: ["johnnymorganz.luau-lsp"]
|
|
340
340
|
};
|
|
341
341
|
var VSCODE_SETTINGS_CONTENT = {
|
package/dist/index.js
CHANGED
|
@@ -399,7 +399,7 @@ var BIOME_JSON_CONTENT = {
|
|
|
399
399
|
}
|
|
400
400
|
};
|
|
401
401
|
var VSCODE_EXTENSIONS_CONTENT = {
|
|
402
|
-
recommendations: ["sumneko.lua", "
|
|
402
|
+
recommendations: ["sumneko.lua", "astronachos.defold"],
|
|
403
403
|
unwantedRecommendations: ["johnnymorganz.luau-lsp"]
|
|
404
404
|
};
|
|
405
405
|
var VSCODE_SETTINGS_CONTENT = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defold-typescript/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "End-user CLI for scaffolding and building Defold projects written in TypeScript.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"test": "bun test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@defold-typescript/transpiler": "0.4.
|
|
35
|
-
"@defold-typescript/types": "0.4.
|
|
34
|
+
"@defold-typescript/transpiler": "0.4.3",
|
|
35
|
+
"@defold-typescript/types": "0.4.3"
|
|
36
36
|
}
|
|
37
37
|
}
|
package/src/init.ts
CHANGED