skuba 0.0.0-master-20230319220011 → 0.0.0-preserve-assets-20230504055335

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 (60) hide show
  1. package/lib/api/jest/index.d.ts +4 -1
  2. package/lib/cli/adapter/eslint.js +0 -24
  3. package/lib/cli/adapter/eslint.js.map +2 -2
  4. package/lib/cli/build/esbuild.js +3 -42
  5. package/lib/cli/build/esbuild.js.map +3 -3
  6. package/lib/cli/build/index.js +9 -2
  7. package/lib/cli/build/index.js.map +2 -2
  8. package/lib/cli/build/tsc.d.ts +3 -0
  9. package/lib/cli/build/tsc.js +60 -0
  10. package/lib/cli/build/tsc.js.map +3 -3
  11. package/lib/cli/buildPackage.js +17 -0
  12. package/lib/cli/buildPackage.js.map +3 -3
  13. package/lib/cli/configure/patchRenovateConfig.js +3 -1
  14. package/lib/cli/configure/patchRenovateConfig.js.map +2 -2
  15. package/lib/cli/lint/autofix.js +6 -0
  16. package/lib/cli/lint/autofix.js.map +2 -2
  17. package/lib/cli/test/reporters/github/index.js +0 -2
  18. package/lib/utils/copy.d.ts +2 -0
  19. package/lib/utils/copy.js +43 -1
  20. package/lib/utils/copy.js.map +2 -2
  21. package/lib/utils/dir.d.ts +2 -1
  22. package/lib/utils/dir.js +2 -2
  23. package/lib/utils/dir.js.map +2 -2
  24. package/lib/utils/manifest.d.ts +1 -0
  25. package/lib/utils/manifest.js +8 -2
  26. package/lib/utils/manifest.js.map +2 -2
  27. package/lib/wrapper/requestListener.js +3 -0
  28. package/lib/wrapper/requestListener.js.map +2 -2
  29. package/package.json +11 -11
  30. package/template/base/.github/CODEOWNERS +0 -4
  31. package/template/express-rest-api/.buildkite/pipeline.yml +1 -1
  32. package/template/express-rest-api/gantry.apply.yml +0 -2
  33. package/template/express-rest-api/package.json +1 -1
  34. package/template/express-rest-api/src/api/healthCheck.ts +1 -1
  35. package/template/express-rest-api/src/api/smokeTest.ts +1 -1
  36. package/template/greeter/.buildkite/pipeline.yml +1 -1
  37. package/template/koa-rest-api/.buildkite/pipeline.yml +1 -1
  38. package/template/koa-rest-api/gantry.apply.yml +0 -2
  39. package/template/koa-rest-api/package.json +5 -5
  40. package/template/koa-rest-api/src/api/healthCheck.ts +1 -1
  41. package/template/koa-rest-api/src/api/jobs/getJobs.ts +1 -1
  42. package/template/koa-rest-api/src/api/jobs/postJob.ts +1 -1
  43. package/template/koa-rest-api/src/api/smokeTest.ts +1 -1
  44. package/template/koa-rest-api/src/framework/server.test.ts +1 -1
  45. package/template/koa-rest-api/src/framework/validation.ts +2 -2
  46. package/template/koa-rest-api/src/storage/jobs.ts +1 -1
  47. package/template/koa-rest-api/src/testing/server.ts +2 -2
  48. package/template/koa-rest-api/src/testing/types.ts +1 -1
  49. package/template/lambda-sqs-worker/.buildkite/pipeline.yml +2 -2
  50. package/template/lambda-sqs-worker/package.json +2 -2
  51. package/template/lambda-sqs-worker/src/app.ts +1 -1
  52. package/template/lambda-sqs-worker/src/framework/validation.ts +1 -1
  53. package/template/lambda-sqs-worker/src/mapping/jobScorer.ts +5 -2
  54. package/template/lambda-sqs-worker/src/services/jobScorer.ts +6 -6
  55. package/template/lambda-sqs-worker/src/testing/handler.ts +1 -1
  56. package/template/lambda-sqs-worker/src/testing/types.ts +1 -1
  57. package/template/lambda-sqs-worker-cdk/.buildkite/pipeline.yml +2 -2
  58. package/template/lambda-sqs-worker-cdk/infra/appStack.ts +1 -1
  59. package/template/lambda-sqs-worker-cdk/package.json +1 -1
  60. package/template/lambda-sqs-worker-cdk/src/app.ts +1 -1
@@ -32,7 +32,7 @@ configs:
32
32
  - *aws-sm
33
33
  - *private-npm
34
34
  - *docker-ecr-cache
35
- - docker-compose#v4.11.0:
35
+ - docker-compose#v4.12.0:
36
36
  dependencies: false
37
37
  run: app
38
38
  retry:
@@ -57,7 +57,7 @@ steps:
57
57
  - *aws-sm
58
58
  - *private-npm
59
59
  - *docker-ecr-cache
60
- - docker-compose#v4.11.0:
60
+ - docker-compose#v4.12.0:
61
61
  run: app
62
62
  timeout_in_minutes: 10
63
63
 
@@ -1,6 +1,6 @@
1
+ import type { StackProps } from 'aws-cdk-lib';
1
2
  import {
2
3
  Stack,
3
- StackProps,
4
4
  aws_iam,
5
5
  aws_kms,
6
6
  aws_lambda,
@@ -12,7 +12,7 @@
12
12
  "test:watch": "skuba test --watch"
13
13
  },
14
14
  "dependencies": {
15
- "@seek/logger": "^5.0.1",
15
+ "@seek/logger": "^6.0.0",
16
16
  "zod": "^3.19.1"
17
17
  },
18
18
  "devDependencies": {
@@ -1,5 +1,5 @@
1
1
  import createLogger from '@seek/logger';
2
- import { SQSEvent, SQSHandler } from 'aws-lambda';
2
+ import type { SQSEvent, SQSHandler } from 'aws-lambda';
3
3
 
4
4
  const logger = createLogger({
5
5
  name: '<%- serviceName %>',