Skip to content

Commit

Permalink
Merge branch 'main' into enable-strict-function-types
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Dec 6, 2022
2 parents cd58e0f + af1d91d commit 10393c8
Show file tree
Hide file tree
Showing 766 changed files with 690,910 additions and 978,332 deletions.
670 changes: 670 additions & 0 deletions .github/fabricbot.json

Large diffs are not rendered by default.

7 changes: 1 addition & 6 deletions Herebyfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -416,11 +416,6 @@ const { main: tsserver, watch: watchTsserver } = entrypointBuildTask({
builtEntrypoint: "./built/local/tsserver/server.js",
output: "./built/local/tsserver.js",
mainDeps: [generateLibs],
// Even though this seems like an exectuable, so could be the default CJS,
// this is used in the browser too. Do the same thing that we do for our
// libraries and generate an IIFE with name `ts`, as to not pollute the global
// scope.
bundlerOptions: { exportIsTsObject: true },
});
export { tsserver, watchTsserver };

Expand Down Expand Up @@ -805,7 +800,7 @@ function baselineAcceptTask(localBaseline, refBaseline) {
}
const toDelete = await glob(`${localBaseline}/**/*.delete`, { nodir: true });
for (const p of toDelete) {
const out = localPathToRefPath(p);
const out = localPathToRefPath(p).replace(/\.delete$/, "");
await fs.promises.rm(out);
}
};
Expand Down
103 changes: 61 additions & 42 deletions lib/cancellationToken.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 10393c8

Please sign in to comment.