@defold-typescript/cli 0.6.0 → 0.7.0
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/README.md +2 -2
- package/dist/bin.js +1 -1
- package/dist/index.js +1 -1
- package/dist/setup-debug.d.ts +1 -1
- package/package.json +10 -3
- package/src/setup-debug.ts +1 -1
package/README.md
CHANGED
|
@@ -22,8 +22,8 @@ the shorter `defold-typescript` binary on your `PATH` and pin the version:
|
|
|
22
22
|
npm i -D @defold-typescript/cli # then: bunx defold-typescript <command>
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
See the repository [README](https://github.com/
|
|
26
|
-
and [`docs/guide/`](https://github.com/
|
|
25
|
+
See the repository [README](https://github.com/defold-typescript/toolchain#readme)
|
|
26
|
+
and [`docs/guide/`](https://github.com/defold-typescript/toolchain/tree/main/docs/guide)
|
|
27
27
|
for the full workflow.
|
|
28
28
|
|
|
29
29
|
## License
|
package/dist/bin.js
CHANGED
|
@@ -1429,7 +1429,7 @@ function resolveBootPathScripts(cwd) {
|
|
|
1429
1429
|
}
|
|
1430
1430
|
|
|
1431
1431
|
// src/setup-debug.ts
|
|
1432
|
-
var LLDEBUGGER_URL = "https://github.com/
|
|
1432
|
+
var LLDEBUGGER_URL = "https://github.com/defold-typescript/toolchain/releases/download/lldebugger-v1/lldebugger.zip";
|
|
1433
1433
|
var LEGACY_BOOTSTRAP_MARKER = "// lldebugger-bootstrap: debug entry, inert in release builds";
|
|
1434
1434
|
var AMBIENT_DTS_REL = "src/lldebugger.debug.d.ts";
|
|
1435
1435
|
var AMBIENT_DECLARATION = `/** @noResolution */
|
package/dist/index.js
CHANGED
|
@@ -1506,7 +1506,7 @@ function resolveBootPathScripts(cwd) {
|
|
|
1506
1506
|
}
|
|
1507
1507
|
|
|
1508
1508
|
// src/setup-debug.ts
|
|
1509
|
-
var LLDEBUGGER_URL = "https://github.com/
|
|
1509
|
+
var LLDEBUGGER_URL = "https://github.com/defold-typescript/toolchain/releases/download/lldebugger-v1/lldebugger.zip";
|
|
1510
1510
|
var LEGACY_BOOTSTRAP_MARKER = "// lldebugger-bootstrap: debug entry, inert in release builds";
|
|
1511
1511
|
var AMBIENT_DTS_REL = "src/lldebugger.debug.d.ts";
|
|
1512
1512
|
var AMBIENT_DECLARATION = `/** @noResolution */
|
package/dist/setup-debug.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const LLDEBUGGER_URL = "https://github.com/
|
|
1
|
+
export declare const LLDEBUGGER_URL = "https://github.com/defold-typescript/toolchain/releases/download/lldebugger-v1/lldebugger.zip";
|
|
2
2
|
export declare const LEGACY_BOOTSTRAP_MARKER = "// lldebugger-bootstrap: debug entry, inert in release builds";
|
|
3
3
|
export declare const AMBIENT_DTS_REL = "src/lldebugger.debug.d.ts";
|
|
4
4
|
export declare const AMBIENT_DECLARATION = "/** @noResolution */\ndeclare module \"lldebugger.debug\" {\n export function start(): void;\n}\n";
|
package/package.json
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@defold-typescript/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "End-user CLI for scaffolding and building Defold projects written in TypeScript.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/defold-typescript/toolchain.git",
|
|
9
|
+
"directory": "packages/cli"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/defold-typescript/toolchain#readme",
|
|
12
|
+
"bugs": "https://github.com/defold-typescript/toolchain/issues",
|
|
6
13
|
"type": "module",
|
|
7
14
|
"main": "./dist/index.js",
|
|
8
15
|
"types": "./dist/index.d.ts",
|
|
@@ -31,8 +38,8 @@
|
|
|
31
38
|
"test": "bun test"
|
|
32
39
|
},
|
|
33
40
|
"dependencies": {
|
|
34
|
-
"@defold-typescript/transpiler": "0.
|
|
35
|
-
"@defold-typescript/types": "0.
|
|
41
|
+
"@defold-typescript/transpiler": "0.7.0",
|
|
42
|
+
"@defold-typescript/types": "0.7.0",
|
|
36
43
|
"@inquirer/prompts": "^7.0.0"
|
|
37
44
|
}
|
|
38
45
|
}
|
package/src/setup-debug.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { isSkipped } from "./script-kind";
|
|
|
8
8
|
// `lldebugger-url` leak guard forbids the upstream ts-defold URL, so this must
|
|
9
9
|
// stay equal to the guide's snapshot URL.
|
|
10
10
|
export const LLDEBUGGER_URL =
|
|
11
|
-
"https://github.com/
|
|
11
|
+
"https://github.com/defold-typescript/toolchain/releases/download/lldebugger-v1/lldebugger.zip";
|
|
12
12
|
|
|
13
13
|
// The prior step shipped a single skip-marker block with the `declare module`
|
|
14
14
|
// inline. That form fails `tsc` under `moduleResolution: Bundler` (Bug 08), so
|