Skip to content

Commit 12aa283

Browse files
committed
chore(sdk): update pnpm workspace configuration and dependencies
1 parent 2d05179 commit 12aa283

6 files changed

Lines changed: 2375 additions & 6124 deletions

File tree

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v24.14.0
1+
v24.18.0

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
"devDependencies": {
2020
"@biomejs/biome": "catalog:",
2121
"@changesets/changelog-github": "^0.7.0",
22-
"@changesets/cli": "^2.31.0",
22+
"@changesets/cli": "^2.31.1",
2323
"husky": "^9.1.7",
24-
"turbo": "^2.10.4",
24+
"turbo": "^2.10.5",
2525
"typescript": "catalog:"
2626
},
2727
"engines": {
2828
"node": ">=24.0.0"
2929
},
30-
"packageManager": "pnpm@11.12.0+sha512.820a6fbd0d9f04c226638002aead1e45340a9139dd5dc077c1d83ef44aa2481c8eb6637b4c9aa696a3c7e35ba818e49cf27213e5f2b91138d09b7a3e26e898ba"
30+
"packageManager": "pnpm@11.15.1+sha512.81350b07e53c9538a02f1f2303b4290fa2d7be04e56e2a970c4cc4b417dc761de196edabd49d55c7dc9580db81007c44143e4e3d7e462b3000d23c255122d065"
3131
}

packages/sdk/src/parsers/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ export const parseIaCWithDiagnostics = async (path: string, options?: ParseIaCOp
8080
export const parseIaC = async (path: string, options?: ParseIaCOptions): Promise<IaCResource[]> =>
8181
(await parseIaCWithDiagnostics(path, options)).resources;
8282

83+
export type { IaCParseResult, IaCResource } from './types.js';
8384
// Intent: expose parser entrypoints behind a stable SDK surface.
8485
export { parseCloudFormation, parseTerraform };
85-
export type { IaCParseResult, IaCResource } from './types.js';

packages/sdk/src/types.ts

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ import type {
6262
StaticResourceBag,
6363
} from '@cloudburn/rules';
6464
import type { AwsRegion } from './providers/aws/client.js';
65+
6566
export type { AwsRegion };
6667

6768
// Intent: define SDK-facing contracts for scanner orchestration.
@@ -205,36 +206,36 @@ export type RegisteredRules = {
205206

206207
export type {
207208
AwsApiGatewayStage,
208-
AwsCloudTrailTrail,
209209
AwsCloudFrontDistribution,
210+
AwsCloudTrailTrail,
210211
AwsCloudWatchLogGroup,
211212
AwsCloudWatchLogStream,
212213
AwsCostUsage,
213-
AwsDiscoveryCatalog,
214214
AwsDiscoveredResource,
215+
AwsDiscoveryCatalog,
215216
AwsDynamoDbAutoscaling,
216217
AwsDynamoDbTable,
217218
AwsEbsSnapshot,
218219
AwsEbsVolume,
219-
AwsElastiCacheCluster,
220-
AwsElastiCacheReservedNode,
220+
AwsEc2Instance,
221+
AwsEc2LoadBalancer,
222+
AwsEc2ReservedInstance,
223+
AwsEc2TargetGroup,
221224
AwsEcsCluster,
222225
AwsEcsClusterMetric,
223226
AwsEcsContainerInstance,
224227
AwsEcsService,
225228
AwsEcsServiceAutoscaling,
226-
AwsEc2Instance,
227-
AwsEc2LoadBalancer,
228-
AwsEc2ReservedInstance,
229-
AwsEc2TargetGroup,
230229
AwsEksNodegroup,
230+
AwsElastiCacheCluster,
231+
AwsElastiCacheReservedNode,
231232
AwsEmrCluster,
232233
AwsEmrClusterMetric,
233234
AwsLambdaFunction,
234235
AwsLambdaFunctionMetric,
235236
AwsRdsInstance,
236-
AwsRdsInstanceCpuMetric,
237237
AwsRdsInstanceActivity,
238+
AwsRdsInstanceCpuMetric,
238239
AwsRdsReservedInstance,
239240
AwsRdsSnapshot,
240241
AwsRedshiftCluster,

0 commit comments

Comments
 (0)