@jsenv/core 40.0.7 → 40.0.8

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.
@@ -1,6 +1,10 @@
1
- import { assertAndNormalizeDirectoryUrl, createLogger, Abort, raceProcessTeardownEvents, createTaskLog, urlToExtension, urlToPathname } from "../jsenv_core_packages.js";
1
+ import { assertAndNormalizeDirectoryUrl$2 as assertAndNormalizeDirectoryUrl, createLogger$2 as createLogger, Abort$1 as Abort, raceProcessTeardownEvents$1 as raceProcessTeardownEvents, createTaskLog$2 as createTaskLog, urlToExtension$2 as urlToExtension, urlToPathname$2 as urlToPathname } from "../jsenv_core_packages.js";
2
2
  import { startServer, jsenvServiceCORS, jsenvServiceErrorHandler, jsenvAccessControlAllowedHeaders, createFileSystemFetch } from "@jsenv/server";
3
3
  import { existsSync } from "node:fs";
4
+ import "node:process";
5
+ import "node:os";
6
+ import "node:tty";
7
+ import "string-width";
4
8
  import "node:path";
5
9
  import "node:crypto";
6
10
  import "@jsenv/ast";
@@ -8,10 +12,6 @@ import "@jsenv/sourcemap";
8
12
  import "node:url";
9
13
  import "node:module";
10
14
  import "@jsenv/js-module-fallback";
11
- import "node:process";
12
- import "node:os";
13
- import "node:tty";
14
- import "string-width";
15
15
 
16
16
  /*
17
17
  * startBuildServer is mean to interact with the build files;
@@ -98,8 +98,7 @@ const startBuildServer = async ({
98
98
  operation.addAbortSource((abort) => {
99
99
  return raceProcessTeardownEvents(
100
100
  {
101
- SIGINT: true,
102
- },
101
+ },
103
102
  abort,
104
103
  );
105
104
  });