@bifravst/aws-ssm-settings-helpers 1.2.8 → 1.2.10

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,6 +1,6 @@
1
- import { describe, it } from 'node:test';
2
1
  import assert from 'node:assert/strict';
3
- import { maybe, settingsPath, get } from './settings.js';
2
+ import { describe, it } from 'node:test';
3
+ import { get, maybe, settingsPath } from './settings.js';
4
4
  void describe('maybe()', () => {
5
5
  void it('should return the given default value if parameter does not exist', async () => {
6
6
  const stackConfig = await maybe({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bifravst/aws-ssm-settings-helpers",
3
- "version": "1.2.8",
3
+ "version": "1.2.10",
4
4
  "description": "Helper functions written in TypeScript for storing and retrieving application settings in AWS SSM Parameter Store.",
5
5
  "exports": {
6
6
  ".": {
@@ -39,14 +39,14 @@
39
39
  "license": "BSD-3-Clause",
40
40
  "devDependencies": {
41
41
  "@bifravst/eslint-config-typescript": "6.1.13",
42
- "@bifravst/prettier-config": "1.0.4",
42
+ "@bifravst/prettier-config": "1.1.0",
43
43
  "@commitlint/config-conventional": "19.2.2",
44
- "@types/aws-lambda": "8.10.142",
45
- "@types/node": "20.14.14",
46
- "commitlint": "19.3.0",
44
+ "@types/aws-lambda": "8.10.143",
45
+ "@types/node": "20.14.15",
46
+ "commitlint": "19.4.0",
47
47
  "husky": "9.1.4",
48
48
  "lint-staged": "15.2.8",
49
- "tsx": "4.16.5"
49
+ "tsx": "4.17.0"
50
50
  },
51
51
  "lint-staged": {
52
52
  "*.ts": [
@@ -89,7 +89,7 @@
89
89
  ],
90
90
  "prettier": "@bifravst/prettier-config",
91
91
  "peerDependencies": {
92
- "@aws-sdk/client-ssm": "^3.624.0",
92
+ "@aws-sdk/client-ssm": "^3.629.0",
93
93
  "aws-cdk-lib": "^2.151.0"
94
94
  }
95
95
  }