@bifravst/http-api-mock 2.0.42 → 2.0.44

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.
@@ -1,7 +1,7 @@
1
1
  import { packLayer } from '@bifravst/aws-cdk-lambda-helpers/layer'
2
2
  import { packLambdaFromPath } from '@bifravst/aws-cdk-lambda-helpers'
3
3
  import { HTTPAPIMockApp } from './App.js'
4
- import { fromEnv } from '@nordicsemiconductor/from-env'
4
+ import { fromEnv } from '@bifravst/from-env'
5
5
  import path from 'node:path'
6
6
  import { fileURLToPath } from 'node:url'
7
7
  import fs from 'node:fs/promises'
@@ -20,7 +20,7 @@ const layersDir = path.join(distDir, 'layers')
20
20
  await fs.mkdir(layersDir)
21
21
 
22
22
  const dependencies: Array<keyof (typeof pJSON)['dependencies']> = [
23
- '@nordicsemiconductor/from-env',
23
+ '@bifravst/from-env',
24
24
  ]
25
25
 
26
26
  new HTTPAPIMockApp(stackName, {
@@ -1,7 +1,7 @@
1
1
  import { packLayer } from '@bifravst/aws-cdk-lambda-helpers/layer';
2
2
  import { packLambdaFromPath } from '@bifravst/aws-cdk-lambda-helpers';
3
3
  import { HTTPAPIMockApp } from './App.js';
4
- import { fromEnv } from '@nordicsemiconductor/from-env';
4
+ import { fromEnv } from '@bifravst/from-env';
5
5
  import path from 'node:path';
6
6
  import { fileURLToPath } from 'node:url';
7
7
  import fs from 'node:fs/promises';
@@ -14,7 +14,7 @@ await fs.mkdir(lambdasDir);
14
14
  const layersDir = path.join(distDir, 'layers');
15
15
  await fs.mkdir(layersDir);
16
16
  const dependencies = [
17
- '@nordicsemiconductor/from-env',
17
+ '@bifravst/from-env',
18
18
  ];
19
19
  new HTTPAPIMockApp(stackName, {
20
20
  lambdaSources: {
package/dist/src/cli.js CHANGED
@@ -2,7 +2,7 @@ import { randomString } from './randomString.js';
2
2
  import run from '@bifravst/run';
3
3
  import { GetCallerIdentityCommand, STSClient } from '@aws-sdk/client-sts';
4
4
  import chalk from 'chalk';
5
- import { stackOutput } from '@nordicsemiconductor/cloudformation-helpers';
5
+ import { stackOutput } from '@bifravst/cloudformation-helpers';
6
6
  import { CloudFormationClient } from '@aws-sdk/client-cloudformation';
7
7
  import path, { dirname } from 'node:path';
8
8
  import { fileURLToPath } from 'node:url';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bifravst/http-api-mock",
3
- "version": "2.0.42",
3
+ "version": "2.0.44",
4
4
  "description": "Helper functions for AWS lambdas written in TypeScript.",
5
5
  "exports": {
6
6
  "./*": {
@@ -83,10 +83,10 @@
83
83
  "@aws-sdk/client-dynamodb": "^3.614.0",
84
84
  "@aws-sdk/client-sts": "^3.614.0",
85
85
  "@aws-sdk/util-dynamodb": "^3.614.0",
86
- "@bifravst/aws-cdk-lambda-helpers": "^1.8.38",
86
+ "@bifravst/aws-cdk-lambda-helpers": "^1.8.39",
87
+ "@bifravst/cloudformation-helpers": "9.1.1",
88
+ "@bifravst/from-env": "3.0.2",
87
89
  "@bifravst/run": "^1.2.0",
88
- "@nordicsemiconductor/cloudformation-helpers": "^9.1.0",
89
- "@nordicsemiconductor/from-env": "^3.0.1",
90
90
  "aws-cdk-lib": "^2.149.0",
91
91
  "cdk": "^2.149.0",
92
92
  "chalk": "^5.3.0",
@@ -94,7 +94,7 @@
94
94
  },
95
95
  "devDependencies": {
96
96
  "@bifravst/eslint-config-typescript": "6.1.9",
97
- "@bifravst/prettier-config": "1.0.3",
97
+ "@bifravst/prettier-config": "1.0.4",
98
98
  "@commitlint/config-conventional": "19.2.2",
99
99
  "@types/aws-lambda": "8.10.141",
100
100
  "@types/node": "20.14.10",
package/src/cli.ts CHANGED
@@ -2,7 +2,7 @@ import { randomString } from './randomString.js'
2
2
  import run from '@bifravst/run'
3
3
  import { GetCallerIdentityCommand, STSClient } from '@aws-sdk/client-sts'
4
4
  import chalk from 'chalk'
5
- import { stackOutput } from '@nordicsemiconductor/cloudformation-helpers'
5
+ import { stackOutput } from '@bifravst/cloudformation-helpers'
6
6
  import type { StackOutputs } from '../cdk/Stack.js'
7
7
  import { CloudFormationClient } from '@aws-sdk/client-cloudformation'
8
8
  import path, { dirname } from 'node:path'