From d1a441c1bfbe69e5b61874345c9cfe7cce20af65 Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Wed, 22 Jan 2025 17:14:19 +1300 Subject: [PATCH] fix: missing export --- dist/index.d.ts | 1 + dist/index.js | 1 + src/index.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/dist/index.d.ts b/dist/index.d.ts index 0ffa0d9..4c0b41e 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -5,6 +5,7 @@ export * from './ecr-repository'; export * from './fargate'; export * from './github'; export * from './helper'; +export * from './ipv6vpc'; export * from './rds'; export * from './route53'; export * from './s3'; diff --git a/dist/index.js b/dist/index.js index b766133..04253de 100644 --- a/dist/index.js +++ b/dist/index.js @@ -21,6 +21,7 @@ __exportStar(require("./ecr-repository"), exports); __exportStar(require("./fargate"), exports); __exportStar(require("./github"), exports); __exportStar(require("./helper"), exports); +__exportStar(require("./ipv6vpc"), exports); __exportStar(require("./rds"), exports); __exportStar(require("./route53"), exports); __exportStar(require("./s3"), exports); diff --git a/src/index.ts b/src/index.ts index 21150b3..9ca5447 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,6 +5,7 @@ export * from './ecr-repository' export * from './fargate' export * from './github' export * from './helper' +export * from './ipv6vpc' export * from './rds' export * from './route53' export * from './s3'