@jsenv/core 23.6.0 → 23.6.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jsenv/core",
3
- "version": "23.6.0",
3
+ "version": "23.6.1",
4
4
  "description": "Tool to develop, test and build js projects",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -137,7 +137,6 @@ const computeCompileReport = async ({
137
137
  logger,
138
138
  originalFileUrl,
139
139
  fileContentFallback,
140
- request,
141
140
  compile,
142
141
  }),
143
142
  )
@@ -178,7 +177,6 @@ const callCompile = async ({
178
177
  logger,
179
178
  originalFileUrl,
180
179
  fileContentFallback,
181
- request,
182
180
  compile,
183
181
  }) => {
184
182
  logger.debug(`compile ${originalFileUrl}`)
@@ -191,7 +189,6 @@ const callCompile = async ({
191
189
  const compileReturnValue = await compile({
192
190
  code: codeBeforeCompile,
193
191
  map: undefined,
194
- request,
195
192
  })
196
193
  if (typeof compileReturnValue !== "object" || compileReturnValue === null) {
197
194
  throw new TypeError(
@@ -155,9 +155,8 @@ export const createCompiledFileService = ({
155
155
  compileCacheStrategy,
156
156
  projectFileRequestedCallback,
157
157
  request,
158
- compile: ({ signal, code, map }) => {
158
+ compile: ({ code, map }) => {
159
159
  return compiler({
160
- signal,
161
160
  logger,
162
161
 
163
162
  code,
@@ -168,6 +167,7 @@ export const createCompiledFileService = ({
168
167
  compileServerOrigin: request.origin,
169
168
  outDirectoryRelativeUrl,
170
169
  compileId,
170
+ request,
171
171
 
172
172
  runtimeSupport,
173
173
  moduleOutFormat,