Skip to content

Commit 778f1d5

Browse files
committed
fix: update dependencies
Closes #527
1 parent 1c1f64e commit 778f1d5

16 files changed

+127
-658
lines changed

.github/workflows/test-and-release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- name: Run End-to-End Tests
6565
run: |
6666
set -o pipefail
67-
npx tsx ./feature-runner/run-features.ts | npx tsx ./feature-runner/console-reporter.ts
67+
node --experimental-transform-types ./feature-runner/run-features.ts | node --experimental-transform-types ./feature-runner/console-reporter.ts
6868
6969
- name: Semantic release
7070
if: github.ref == 'refs/heads/saga'

cdk.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"app": "npx tsx cdk/registry.ts"
2+
"app": "node --experimental-transform-types cdk/registry.ts"
33
}

cdk/RegistryApp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { App } from 'aws-cdk-lib'
2-
import type { RegistryLambdas } from './RegistryLambdas.js'
3-
import { RegistryStack } from './RegistryStack.js'
2+
import type { RegistryLambdas } from './RegistryLambdas.ts'
3+
import { RegistryStack } from './RegistryStack.ts'
44

55
export class RegistryApp extends App {
66
public constructor({

cdk/RegistryLambdas.ts

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

33
export type RegistryLambdas = {
44
publishToS3: PackedLambda

cdk/RegistryStack.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import {
1111
aws_s3 as S3,
1212
Stack,
1313
} from 'aws-cdk-lib'
14-
import { CD } from './CD.js'
15-
import type { RegistryLambdas } from './RegistryLambdas.js'
16-
import { STACK_NAME } from './stackConfig.js'
14+
import { CD } from './CD.ts'
15+
import type { RegistryLambdas } from './RegistryLambdas.ts'
16+
import { STACK_NAME } from './stackConfig.ts'
1717

1818
export class RegistryStack extends Stack {
1919
public constructor(

cdk/registry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { ensureGitHubOIDCProvider } from '@bifravst/ci'
44
import { mkdir } from 'node:fs/promises'
55
import path from 'node:path'
66
import pJSON from '../package.json' assert { type: 'json' }
7-
import { RegistryApp } from './RegistryApp.js'
7+
import { RegistryApp } from './RegistryApp.ts'
88

99
const repoUrl = new URL(pJSON.repository.url)
1010
const repository = {

cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22

3-
node --loader tsx ./cli/cli.ts "$@"
3+
node --experimental-transform-types ./cli/cli.ts "$@"

feature-runner/run-features.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { runFolder } from '@bifravst/bdd-markdown'
44
import { stackOutput } from '@bifravst/cloudformation-helpers'
55
import chalk from 'chalk'
66
import path from 'node:path'
7-
import type { StackOutputs } from '../cdk/RegistryStack.js'
8-
import { STACK_NAME } from '../cdk/stackConfig.js'
9-
import { steps } from './steps.js'
7+
import type { StackOutputs } from '../cdk/RegistryStack.ts'
8+
import { STACK_NAME } from '../cdk/stackConfig.ts'
9+
import { steps } from './steps.ts'
1010

1111
const config = await stackOutput(new CloudFormationClient({}))<StackOutputs>(
1212
STACK_NAME,

feature-runner/steps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { Type } from '@sinclair/typebox'
1515
import { randomUUID } from 'node:crypto'
1616
import pRetry from 'p-retry'
1717
import { check, not, objectMatching, objectWithKeys } from 'tsmatchers'
18-
import { type World } from './run-features.js'
18+
import { type World } from './run-features.ts'
1919

2020
export const steps = ({
2121
ssm,

lambda/paginate.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { isEmpty } from './isNotEmpty.js'
2-
import { isNullOrUndefined } from './isNullOrUndefined.js'
1+
import { isEmpty } from './isNotEmpty.ts'
2+
import { isNullOrUndefined } from './isNullOrUndefined.ts'
33

44
/**
55
* Iteratively follows paginated results.

0 commit comments

Comments
 (0)