skuba 13.0.2 → 14.0.0-migrate-to-inquirer-20251031054648

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.
Files changed (51) hide show
  1. package/lib/cli/build/esbuild.js +3 -12
  2. package/lib/cli/build/esbuild.js.map +3 -3
  3. package/lib/cli/configure/getEntryPoint.d.ts +1 -1
  4. package/lib/cli/configure/getEntryPoint.js +5 -7
  5. package/lib/cli/configure/getEntryPoint.js.map +2 -2
  6. package/lib/cli/configure/getProjectType.js +4 -6
  7. package/lib/cli/configure/getProjectType.js.map +2 -2
  8. package/lib/cli/configure/index.js +9 -8
  9. package/lib/cli/configure/index.js.map +2 -2
  10. package/lib/cli/init/getConfig.d.ts +1 -1
  11. package/lib/cli/init/getConfig.js +27 -32
  12. package/lib/cli/init/getConfig.js.map +3 -3
  13. package/lib/cli/init/git.js +2 -2
  14. package/lib/cli/init/git.js.map +3 -3
  15. package/lib/cli/init/prompts.d.ts +9 -6
  16. package/lib/cli/init/prompts.js +18 -28
  17. package/lib/cli/init/prompts.js.map +3 -3
  18. package/lib/cli/init/types.d.ts +1 -1
  19. package/lib/cli/lint/autofix.js +2 -2
  20. package/lib/cli/lint/autofix.js.map +3 -3
  21. package/lib/cli/lint/internalLints/noSkubaTemplateJs.js +2 -2
  22. package/lib/cli/lint/internalLints/noSkubaTemplateJs.js.map +3 -3
  23. package/lib/cli/lint/internalLints/upgrade/patches/10.1.0/migrateNpmrcToPnpmWorkspace.js +3 -10
  24. package/lib/cli/lint/internalLints/upgrade/patches/10.1.0/migrateNpmrcToPnpmWorkspace.js.map +2 -2
  25. package/lib/cli/lint/internalLints/upgrade/patches/12.4.1/updateLambdaConfigs.js +4 -5
  26. package/lib/cli/lint/internalLints/upgrade/patches/12.4.1/updateLambdaConfigs.js.map +2 -2
  27. package/lib/utils/dir.js +3 -2
  28. package/lib/utils/dir.js.map +2 -2
  29. package/lib/utils/fs.d.ts +1 -0
  30. package/lib/utils/fs.js +51 -0
  31. package/lib/utils/fs.js.map +7 -0
  32. package/lib/utils/sleep.d.ts +5 -0
  33. package/lib/utils/sleep.js +35 -0
  34. package/lib/utils/sleep.js.map +7 -0
  35. package/lib/utils/wait.d.ts +0 -4
  36. package/lib/utils/wait.js +2 -10
  37. package/lib/utils/wait.js.map +2 -2
  38. package/package.json +6 -6
  39. package/template/express-rest-api/.gantry/dev.yml +2 -2
  40. package/template/express-rest-api/.gantry/prod.yml +2 -2
  41. package/template/express-rest-api/package.json +5 -5
  42. package/template/greeter/package.json +3 -3
  43. package/template/koa-rest-api/.gantry/dev.yml +2 -2
  44. package/template/koa-rest-api/.gantry/prod.yml +2 -2
  45. package/template/koa-rest-api/package.json +5 -5
  46. package/template/lambda-sqs-worker-cdk/infra/appStack.ts +1 -1
  47. package/template/lambda-sqs-worker-cdk/package.json +3 -3
  48. package/template/oss-npm-package/.github/workflows/release.yml +1 -1
  49. package/template/oss-npm-package/.github/workflows/validate.yml +1 -1
  50. package/lib/enquirer.d.js +0 -2
  51. package/lib/enquirer.d.js.map +0 -7
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ var __create = Object.create;
3
+ var __defProp = Object.defineProperty;
4
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
+ var __getOwnPropNames = Object.getOwnPropertyNames;
6
+ var __getProtoOf = Object.getPrototypeOf;
7
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __copyProps = (to, from, except, desc) => {
13
+ if (from && typeof from === "object" || typeof from === "function") {
14
+ for (let key of __getOwnPropNames(from))
15
+ if (!__hasOwnProp.call(to, key) && key !== except)
16
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
+ }
18
+ return to;
19
+ };
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
28
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
+ var fs_exports = {};
30
+ __export(fs_exports, {
31
+ pathExists: () => pathExists
32
+ });
33
+ module.exports = __toCommonJS(fs_exports);
34
+ var import_fs_extra = __toESM(require("fs-extra"));
35
+ var import_error = require("./error.js");
36
+ const pathExists = async (filePath) => {
37
+ try {
38
+ await import_fs_extra.default.access(filePath);
39
+ return true;
40
+ } catch (error) {
41
+ if ((0, import_error.isErrorWithCode)(error, "ENOENT")) {
42
+ return false;
43
+ }
44
+ throw error;
45
+ }
46
+ };
47
+ // Annotate the CommonJS export names for ESM import in node:
48
+ 0 && (module.exports = {
49
+ pathExists
50
+ });
51
+ //# sourceMappingURL=fs.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/utils/fs.ts"],
4
+ "sourcesContent": ["import fs from 'fs-extra';\n\nimport { isErrorWithCode } from './error.js';\n\nexport const pathExists = async (filePath: string): Promise<boolean> => {\n try {\n await fs.access(filePath);\n\n return true; // Path exists and is accessible\n } catch (error: unknown) {\n if (isErrorWithCode(error, 'ENOENT')) {\n return false; // Path does not exist\n }\n\n throw error; // Other errors (include permission issues)\n }\n};\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAAe;AAEf,mBAAgC;AAEzB,MAAM,aAAa,OAAO,aAAuC;AACtE,MAAI;AACF,UAAM,gBAAAA,QAAG,OAAO,QAAQ;AAExB,WAAO;AAAA,EACT,SAAS,OAAgB;AACvB,YAAI,8BAAgB,OAAO,QAAQ,GAAG;AACpC,aAAO;AAAA,IACT;AAEA,UAAM;AAAA,EACR;AACF;",
6
+ "names": ["fs"]
7
+ }
@@ -0,0 +1,5 @@
1
+ interface Timeout extends PromiseLike<void> {
2
+ clear?: () => void;
3
+ }
4
+ export declare const sleep: (ms: number) => Timeout;
5
+ export {};
@@ -0,0 +1,35 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var sleep_exports = {};
20
+ __export(sleep_exports, {
21
+ sleep: () => sleep
22
+ });
23
+ module.exports = __toCommonJS(sleep_exports);
24
+ const sleep = (ms) => {
25
+ let timeout;
26
+ return Object.assign(
27
+ new Promise((resolve) => timeout = setTimeout(resolve, ms)),
28
+ { clear: () => clearTimeout(timeout) }
29
+ );
30
+ };
31
+ // Annotate the CommonJS export names for ESM import in node:
32
+ 0 && (module.exports = {
33
+ sleep
34
+ });
35
+ //# sourceMappingURL=sleep.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/utils/sleep.ts"],
4
+ "sourcesContent": ["interface Timeout extends PromiseLike<void> {\n clear?: () => void;\n}\n\nexport const sleep = (ms: number): Timeout => {\n let timeout: NodeJS.Timeout;\n\n return Object.assign(\n new Promise<void>((resolve) => (timeout = setTimeout(resolve, ms))),\n { clear: () => clearTimeout(timeout) },\n );\n};\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAIO,MAAM,QAAQ,CAAC,OAAwB;AAC5C,MAAI;AAEJ,SAAO,OAAO;AAAA,IACZ,IAAI,QAAc,CAAC,YAAa,UAAU,WAAW,SAAS,EAAE,CAAE;AAAA,IAClE,EAAE,OAAO,MAAM,aAAa,OAAO,EAAE;AAAA,EACvC;AACF;",
6
+ "names": []
7
+ }
@@ -1,7 +1,3 @@
1
- interface Timeout extends PromiseLike<void> {
2
- clear?: () => void;
3
- }
4
- export declare const sleep: (ms: number) => Timeout;
5
1
  export declare const throwOnTimeout: <T>(promise: PromiseLike<T>, { s }: {
6
2
  s: number;
7
3
  }) => Promise<T>;
package/lib/utils/wait.js CHANGED
@@ -18,20 +18,13 @@ var __copyProps = (to, from, except, desc) => {
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
19
  var wait_exports = {};
20
20
  __export(wait_exports, {
21
- sleep: () => sleep,
22
21
  throwOnTimeout: () => throwOnTimeout,
23
22
  withTimeout: () => withTimeout
24
23
  });
25
24
  module.exports = __toCommonJS(wait_exports);
26
25
  var import_error = require("./error.js");
27
26
  var import_logging = require("./logging.js");
28
- const sleep = (ms) => {
29
- let timeout;
30
- return Object.assign(
31
- new Promise((resolve) => timeout = setTimeout(resolve, ms)),
32
- { clear: () => clearTimeout(timeout) }
33
- );
34
- };
27
+ var import_sleep = require("./sleep.js");
35
28
  const throwOnTimeout = async (promise, { s }) => {
36
29
  const result = await withTimeout(promise, { s });
37
30
  if (!result.ok) {
@@ -40,7 +33,7 @@ const throwOnTimeout = async (promise, { s }) => {
40
33
  return result.value;
41
34
  };
42
35
  const withTimeout = async (promise, { s }) => {
43
- const timeout = sleep(s * 1e3);
36
+ const timeout = (0, import_sleep.sleep)(s * 1e3);
44
37
  try {
45
38
  return await Promise.race([
46
39
  Promise.resolve(promise).then((value) => ({ ok: true, value })),
@@ -52,7 +45,6 @@ const withTimeout = async (promise, { s }) => {
52
45
  };
53
46
  // Annotate the CommonJS export names for ESM import in node:
54
47
  0 && (module.exports = {
55
- sleep,
56
48
  throwOnTimeout,
57
49
  withTimeout
58
50
  });
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/utils/wait.ts"],
4
- "sourcesContent": ["import { createTerseError } from './error.js';\nimport { pluralise } from './logging.js';\n\ninterface Timeout extends PromiseLike<void> {\n clear?: () => void;\n}\n\nexport const sleep = (ms: number): Timeout => {\n let timeout: NodeJS.Timeout;\n\n return Object.assign(\n new Promise<void>((resolve) => (timeout = setTimeout(resolve, ms))),\n { clear: () => clearTimeout(timeout) },\n );\n};\n\nexport const throwOnTimeout = async <T>(\n promise: PromiseLike<T>,\n { s }: { s: number },\n): Promise<T> => {\n const result = await withTimeout(promise, { s });\n\n if (!result.ok) {\n throw createTerseError(`Timed out after ${pluralise(s, 'second')}`);\n }\n\n return result.value;\n};\n\ntype TimeoutResult<T> = { ok: true; value: T } | { ok: false };\n\nexport const withTimeout = async <T>(\n promise: T | PromiseLike<T>,\n { s }: { s: number },\n): Promise<TimeoutResult<T>> => {\n const timeout = sleep(s * 1_000);\n\n try {\n return await Promise.race<TimeoutResult<T>>([\n Promise.resolve(promise).then((value) => ({ ok: true, value })),\n timeout.then(() => ({ ok: false })),\n ]);\n } finally {\n timeout.clear?.();\n }\n};\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAiC;AACjC,qBAA0B;AAMnB,MAAM,QAAQ,CAAC,OAAwB;AAC5C,MAAI;AAEJ,SAAO,OAAO;AAAA,IACZ,IAAI,QAAc,CAAC,YAAa,UAAU,WAAW,SAAS,EAAE,CAAE;AAAA,IAClE,EAAE,OAAO,MAAM,aAAa,OAAO,EAAE;AAAA,EACvC;AACF;AAEO,MAAM,iBAAiB,OAC5B,SACA,EAAE,EAAE,MACW;AACf,QAAM,SAAS,MAAM,YAAY,SAAS,EAAE,EAAE,CAAC;AAE/C,MAAI,CAAC,OAAO,IAAI;AACd,cAAM,+BAAiB,uBAAmB,0BAAU,GAAG,QAAQ,CAAC,EAAE;AAAA,EACpE;AAEA,SAAO,OAAO;AAChB;AAIO,MAAM,cAAc,OACzB,SACA,EAAE,EAAE,MAC0B;AAC9B,QAAM,UAAU,MAAM,IAAI,GAAK;AAE/B,MAAI;AACF,WAAO,MAAM,QAAQ,KAAuB;AAAA,MAC1C,QAAQ,QAAQ,OAAO,EAAE,KAAK,CAAC,WAAW,EAAE,IAAI,MAAM,MAAM,EAAE;AAAA,MAC9D,QAAQ,KAAK,OAAO,EAAE,IAAI,MAAM,EAAE;AAAA,IACpC,CAAC;AAAA,EACH,UAAE;AACA,YAAQ,QAAQ;AAAA,EAClB;AACF;",
4
+ "sourcesContent": ["import { createTerseError } from './error.js';\nimport { pluralise } from './logging.js';\nimport { sleep } from './sleep.js';\n\nexport const throwOnTimeout = async <T>(\n promise: PromiseLike<T>,\n { s }: { s: number },\n): Promise<T> => {\n const result = await withTimeout(promise, { s });\n\n if (!result.ok) {\n throw createTerseError(`Timed out after ${pluralise(s, 'second')}`);\n }\n\n return result.value;\n};\n\ntype TimeoutResult<T> = { ok: true; value: T } | { ok: false };\n\nexport const withTimeout = async <T>(\n promise: T | PromiseLike<T>,\n { s }: { s: number },\n): Promise<TimeoutResult<T>> => {\n const timeout = sleep(s * 1_000);\n\n try {\n return await Promise.race<TimeoutResult<T>>([\n Promise.resolve(promise).then((value) => ({ ok: true, value })),\n timeout.then(() => ({ ok: false })),\n ]);\n } finally {\n timeout.clear?.();\n }\n};\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAAiC;AACjC,qBAA0B;AAC1B,mBAAsB;AAEf,MAAM,iBAAiB,OAC5B,SACA,EAAE,EAAE,MACW;AACf,QAAM,SAAS,MAAM,YAAY,SAAS,EAAE,EAAE,CAAC;AAE/C,MAAI,CAAC,OAAO,IAAI;AACd,cAAM,+BAAiB,uBAAmB,0BAAU,GAAG,QAAQ,CAAC,EAAE;AAAA,EACpE;AAEA,SAAO,OAAO;AAChB;AAIO,MAAM,cAAc,OACzB,SACA,EAAE,EAAE,MAC0B;AAC9B,QAAM,cAAU,oBAAM,IAAI,GAAK;AAE/B,MAAI;AACF,WAAO,MAAM,QAAQ,KAAuB;AAAA,MAC1C,QAAQ,QAAQ,OAAO,EAAE,KAAK,CAAC,WAAW,EAAE,IAAI,MAAM,MAAM,EAAE;AAAA,MAC9D,QAAQ,KAAK,OAAO,EAAE,IAAI,MAAM,EAAE;AAAA,IACpC,CAAC;AAAA,EACH,UAAE;AACA,YAAQ,QAAQ;AAAA,EAClB;AACF;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skuba",
3
- "version": "13.0.2",
3
+ "version": "14.0.0-migrate-to-inquirer-20251031054648",
4
4
  "private": false,
5
5
  "description": "SEEK development toolkit for backend applications and packages",
6
6
  "homepage": "https://github.com/seek-oss/skuba#readme",
@@ -57,6 +57,7 @@
57
57
  "dependencies": {
58
58
  "@esbuild-plugins/tsconfig-paths": "^0.1.0",
59
59
  "@eslint/migrate-config": "~1.3.8",
60
+ "@inquirer/prompts": "^7.9.0",
60
61
  "@jest/types": "^30.0.0",
61
62
  "@octokit/graphql": "^9.0.0",
62
63
  "@octokit/graphql-schema": "^15.3.0",
@@ -67,7 +68,6 @@
67
68
  "chalk": "^4.1.0",
68
69
  "concurrently": "^9.0.0",
69
70
  "ejs": "^3.1.6",
70
- "enquirer": "^2.3.6",
71
71
  "esbuild": "~0.25.0",
72
72
  "eslint": "^9.11.1",
73
73
  "execa": "^5.0.0",
@@ -127,16 +127,16 @@
127
127
  "fastify": "5.6.1",
128
128
  "jest-diff": "30.2.0",
129
129
  "jsonfile": "6.2.0",
130
- "koa": "3.0.1",
131
- "memfs": "4.48.1",
130
+ "koa": "3.0.3",
131
+ "memfs": "4.49.0",
132
132
  "remark-cli": "12.0.1",
133
133
  "remark-preset-lint-recommended": "7.0.1",
134
- "semver": "7.7.2",
134
+ "semver": "7.7.3",
135
135
  "supertest": "7.1.4",
136
136
  "type-fest": "2.19.0"
137
137
  },
138
138
  "peerDependencies": {
139
- "skuba-dive": "1 || 2"
139
+ "skuba-dive": "3.0.0-migrate-to-inquirer-20251031054648"
140
140
  },
141
141
  "peerDependenciesMeta": {
142
142
  "skuba-dive": {
@@ -1,8 +1,8 @@
1
- deployment: dev
1
+ deployment: <%- devGantryEnvironmentName %>
2
2
  env: development
3
3
 
4
- maxInstanceCount: 1
5
4
  minInstanceCount: 1
5
+ maxInstanceCount: 1
6
6
 
7
7
  # Disable dashboard for cost savings
8
8
  cloudwatchDashboardDisabled: true
@@ -1,8 +1,8 @@
1
- deployment: prod
1
+ deployment: <%- prodGantryEnvironmentName %>
2
2
  env: production
3
3
 
4
- maxInstanceCount: 10
5
4
  minInstanceCount: 3
5
+ maxInstanceCount: 10
6
6
 
7
7
  openTelemetry:
8
8
  enabled: true
@@ -21,11 +21,11 @@
21
21
  "dependencies": {
22
22
  "@opentelemetry/api": "^1.9.0",
23
23
  "@opentelemetry/core": "^2.0.0",
24
- "@opentelemetry/exporter-trace-otlp-grpc": "^0.205.0",
25
- "@opentelemetry/instrumentation-aws-sdk": "^0.61.0",
26
- "@opentelemetry/instrumentation-http": "^0.205.0",
24
+ "@opentelemetry/exporter-trace-otlp-grpc": "^0.206.0",
25
+ "@opentelemetry/instrumentation-aws-sdk": "^0.62.0",
26
+ "@opentelemetry/instrumentation-http": "^0.206.0",
27
27
  "@opentelemetry/propagator-b3": "^2.0.0",
28
- "@opentelemetry/sdk-node": "^0.205.0",
28
+ "@opentelemetry/sdk-node": "^0.206.0",
29
29
  "@seek/logger": "^11.1.0",
30
30
  "express": "^5.0.0",
31
31
  "hot-shots": "^11.0.0",
@@ -40,7 +40,7 @@
40
40
  "skuba": "*",
41
41
  "supertest": "^7.0.0"
42
42
  },
43
- "packageManager": "pnpm@10.17.1",
43
+ "packageManager": "pnpm@10.19.0",
44
44
  "engines": {
45
45
  "node": ">=22"
46
46
  }
@@ -19,13 +19,13 @@
19
19
  "test:watch": "skuba test --watch"
20
20
  },
21
21
  "dependencies": {
22
- "skuba-dive": "^2.0.0"
22
+ "skuba-dive": "3.0.0-migrate-to-inquirer-20251031054648"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/node": "^22.13.10",
26
- "skuba": "*"
26
+ "skuba": "14.0.0-migrate-to-inquirer-20251031054648"
27
27
  },
28
- "packageManager": "pnpm@10.17.1",
28
+ "packageManager": "pnpm@10.19.0",
29
29
  "engines": {
30
30
  "node": ">=22"
31
31
  }
@@ -1,8 +1,8 @@
1
- deployment: dev
1
+ deployment: <%- devGantryEnvironmentName %>
2
2
  env: development
3
3
 
4
- maxInstanceCount: 1
5
4
  minInstanceCount: 1
5
+ maxInstanceCount: 1
6
6
 
7
7
  # Disable dashboard for cost savings
8
8
  cloudwatchDashboardDisabled: true
@@ -1,8 +1,8 @@
1
- deployment: prod
1
+ deployment: <%- prodGantryEnvironmentName %>
2
2
  env: production
3
3
 
4
- maxInstanceCount: 10
5
4
  minInstanceCount: 3
5
+ maxInstanceCount: 10
6
6
 
7
7
  openTelemetry:
8
8
  enabled: true
@@ -23,11 +23,11 @@
23
23
  "@koa/router": "^14.0.0",
24
24
  "@opentelemetry/api": "^1.9.0",
25
25
  "@opentelemetry/core": "^2.0.0",
26
- "@opentelemetry/exporter-trace-otlp-grpc": "^0.205.0",
27
- "@opentelemetry/instrumentation-aws-sdk": "^0.61.0",
28
- "@opentelemetry/instrumentation-http": "^0.205.0",
26
+ "@opentelemetry/exporter-trace-otlp-grpc": "^0.206.0",
27
+ "@opentelemetry/instrumentation-aws-sdk": "^0.62.0",
28
+ "@opentelemetry/instrumentation-http": "^0.206.0",
29
29
  "@opentelemetry/propagator-b3": "^2.0.0",
30
- "@opentelemetry/sdk-node": "^0.205.0",
30
+ "@opentelemetry/sdk-node": "^0.206.0",
31
31
  "@seek/logger": "^11.1.0",
32
32
  "hot-shots": "^11.0.0",
33
33
  "koa": "^3.0.1",
@@ -49,7 +49,7 @@
49
49
  "skuba": "*",
50
50
  "supertest": "^7.0.0"
51
51
  },
52
- "packageManager": "pnpm@10.17.1",
52
+ "packageManager": "pnpm@10.19.0",
53
53
  "engines": {
54
54
  "node": ">=22"
55
55
  }
@@ -19,7 +19,7 @@ import { DatadogLambda } from 'datadog-cdk-constructs-v2';
19
19
  import { config } from './config.js';
20
20
 
21
21
  // Updated by https://github.com/seek-oss/rynovate
22
- const DATADOG_EXTENSION_LAYER_VERSION = 87;
22
+ const DATADOG_EXTENSION_LAYER_VERSION = 88;
23
23
 
24
24
  // Updated by https://github.com/seek-oss/rynovate
25
25
  const DATADOG_NODE_LAYER_VERSION = 126;
@@ -23,7 +23,7 @@
23
23
  "@aws-sdk/client-sns": "^3.363.0",
24
24
  "@seek/aws-codedeploy-hooks": "^2.0.0",
25
25
  "@seek/logger": "^11.1.0",
26
- "skuba-dive": "^2.0.0",
26
+ "skuba-dive": "3.0.0-migrate-to-inquirer-20251031054648",
27
27
  "zod": "^4.0.0"
28
28
  },
29
29
  "devDependencies": {
@@ -41,9 +41,9 @@
41
41
  "datadog-lambda-js": "^12.0.0",
42
42
  "dd-trace": "^5.0.0",
43
43
  "pino-pretty": "^13.0.0",
44
- "skuba": "*"
44
+ "skuba": "14.0.0-migrate-to-inquirer-20251031054648"
45
45
  },
46
- "packageManager": "pnpm@10.17.1",
46
+ "packageManager": "pnpm@10.19.0",
47
47
  "engines": {
48
48
  "node": ">=22"
49
49
  }
@@ -26,7 +26,7 @@ jobs:
26
26
  uses: pnpm/action-setup@v4
27
27
 
28
28
  - name: Set up Node.js
29
- uses: actions/setup-node@v5
29
+ uses: actions/setup-node@v6
30
30
  with:
31
31
  node-version-file: .nvmrc
32
32
 
@@ -22,7 +22,7 @@ jobs:
22
22
  uses: pnpm/action-setup@v4
23
23
 
24
24
  - name: Set up Node.js
25
- uses: actions/setup-node@v5
25
+ uses: actions/setup-node@v6
26
26
  with:
27
27
  node-version-file: .nvmrc
28
28
 
package/lib/enquirer.d.js DELETED
@@ -1,2 +0,0 @@
1
- "use strict";
2
- //# sourceMappingURL=enquirer.d.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": [],
4
- "sourcesContent": [],
5
- "mappings": "",
6
- "names": []
7
- }