Skip to content

Commit 3098eea

Browse files
deps: skuba 12.0.2 (#149)
* deps: skuba 12.0.2 * Run `skuba format` --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: skuba <>
1 parent 717e375 commit 3098eea

38 files changed

+83
-83
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@types/node": "^22.13.14",
2121
"dotenv": "16.6.1",
2222
"esbuild": "~0.25.0",
23-
"skuba": "11.1.0"
23+
"skuba": "12.0.2"
2424
},
2525
"packageManager": "[email protected]",
2626
"engines": {

packages/hooks/src/containsSkipDirective.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { containsSkipDirective } from './containsSkipDirective';
1+
import { containsSkipDirective } from './containsSkipDirective.js';
22

33
describe('containsSkipDirective', () => {
44
it.each([

packages/hooks/src/http.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Koa from 'koa';
22
import { agent } from 'supertest';
33

4-
import { isHttpHook } from './http';
4+
import { isHttpHook } from './http.js';
55

66
describe('isHttpHook', () => {
77
it('is compatible with Request', () =>

packages/hooks/src/http.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { GANTRY_HOOK_PREFIX, USER_AGENT_PREFIX } from './constants';
1+
import { GANTRY_HOOK_PREFIX, USER_AGENT_PREFIX } from './constants.js';
22

33
type HeadersClass = { get: (name: string) => string | null };
44

packages/hooks/src/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import * as rootModule from '.';
1+
import * as rootModule from './index.js';
22

33
describe('rootModule', () => {
44
it('exports runtime helpers', () =>

packages/hooks/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { isHttpHook } from './http';
2-
export { isLambdaHook } from './lambda';
3-
export { smokeTest } from './smokeTest';
4-
export { containsSkipDirective } from './containsSkipDirective';
1+
export { isHttpHook } from './http.js';
2+
export { isLambdaHook } from './lambda.js';
3+
export { smokeTest } from './smokeTest/index.js';
4+
export { containsSkipDirective } from './containsSkipDirective.js';

packages/hooks/src/lambda.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Context, SQSEvent } from 'aws-lambda';
22

3-
import { isLambdaHook } from './lambda';
3+
import { isLambdaHook } from './lambda.js';
44

55
describe('isLambdaHook', () => {
66
it('is compatible with @types/aws-lambda', () =>

packages/hooks/src/lambda.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { USER_AGENT_PREFIX } from './constants';
1+
import { USER_AGENT_PREFIX } from './constants.js';
22

33
type LambdaContext = {
44
clientContext?: {

packages/hooks/src/smokeTest/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { koaMiddleware } from './koa';
1+
import { koaMiddleware } from './koa.js';
22

33
export const smokeTest = {
44
koaMiddleware,

packages/hooks/src/smokeTest/koa.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import createLogger from '@seek/logger';
22
import Koa from 'koa';
33
import { agent } from 'supertest';
44

5-
import { koaMiddleware } from './koa';
5+
import { koaMiddleware } from './koa.js';
66

77
const onError = jest.fn();
88
const write = jest.fn();

0 commit comments

Comments
 (0)