64b8f2e04b
Currently main can't be released:
https://github.com/tldraw/tldraw/actions/runs/7557438453/job/20576664393
The issue was bisected down to
29044867dd
and can be "fixed" by forcing TypeScript to the previous resolution
(5.3.3->4.9.5).
It looks like Auto runs node-ts on everything, and Typescript picks up a
module/moduleResolution mismatch somewhere. It is likely that the
mismatch is not in our code, since blind replacement of all instances of
`"moduleResolution"` to `"NodeNext"` in the project doesn't help.
It is likely that the relevant TypeScript change is this one:
https://www.typescriptlang.org/docs/handbook/modules/reference.html#the-moduleresolution-compiler-option
Further investigation is pending, but this PR should fix the release
process.
### Change Type
- [x] `internal` — Any other changes that don't affect the published
package
13 lines
504 B
Diff
13 lines
504 B
Diff
diff --git a/dist/auto.js b/dist/auto.js
|
|
index f85465f2bf6968bbc2a8c9d66eaa181a6a3cdabd..8723c86f2be2c41a7638fc842964093808c55cc4 100644
|
|
--- a/dist/auto.js
|
|
+++ b/dist/auto.js
|
|
@@ -34,7 +34,7 @@ const is_binary_1 = tslib_1.__importDefault(require("./utils/is-binary"));
|
|
const git_reset_1 = require("./utils/git-reset");
|
|
try {
|
|
if (require.resolve("typescript")) {
|
|
- require("ts-node/register/transpile-only");
|
|
+ // require("ts-node/register/transpile-only");
|
|
}
|
|
}
|
|
catch (error) {
|