skuba 11.0.0-feat-npmrc-to-workspace-20250511023215 → 11.0.0
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.
- package/jest/transform.js +5 -1
- package/lib/cli/init/types.d.ts +3 -3
- package/package.json +4 -4
- package/template/express-rest-api/.buildkite/pipeline.yml +1 -1
- package/template/greeter/.buildkite/pipeline.yml +1 -1
- package/template/greeter/package.json +1 -1
- package/template/koa-rest-api/.buildkite/pipeline.yml +1 -1
- package/template/koa-rest-api/package.json +1 -1
- package/template/lambda-sqs-worker-cdk/.buildkite/pipeline.yml +2 -2
- package/template/lambda-sqs-worker-cdk/package.json +1 -1
package/jest/transform.js
CHANGED
|
@@ -38,7 +38,11 @@ const tsconfig = BROKEN_MODULE_RESOLUTIONS.has(
|
|
|
38
38
|
? { tsconfig: { moduleResolution: 'Node' } }
|
|
39
39
|
: undefined;
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
/**
|
|
42
|
+
* Rewrite `ts-jest` transformations using our resolved `TS_JEST_PATH`.
|
|
43
|
+
*
|
|
44
|
+
* @type {import ('@jest/types').Config.InitialOptions['transform']}
|
|
45
|
+
*/
|
|
42
46
|
module.exports.transform = Object.fromEntries(
|
|
43
47
|
Object.entries(defaults.transform).map(([key, value]) => {
|
|
44
48
|
if (typeof value === 'string') {
|
package/lib/cli/init/types.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ export declare const initConfigInputSchema: z.ZodObject<{
|
|
|
54
54
|
};
|
|
55
55
|
}>;
|
|
56
56
|
export type InitConfig = z.infer<typeof initConfigSchema>;
|
|
57
|
-
declare const initConfigSchema: z.ZodObject<
|
|
57
|
+
declare const initConfigSchema: z.ZodObject<Omit<{
|
|
58
58
|
destinationDir: z.ZodString;
|
|
59
59
|
templateComplete: z.ZodBoolean;
|
|
60
60
|
templateData: z.ZodObject<{
|
|
@@ -74,7 +74,7 @@ declare const initConfigSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
74
74
|
defaultBranch: z.ZodString;
|
|
75
75
|
}, z.ZodString, "strip">>;
|
|
76
76
|
templateName: z.ZodString;
|
|
77
|
-
}, "templateData"
|
|
77
|
+
}, "templateData"> & {
|
|
78
78
|
templateData: z.ZodObject<{
|
|
79
79
|
ownerName: z.ZodString;
|
|
80
80
|
repoName: z.ZodString;
|
|
@@ -100,7 +100,7 @@ declare const initConfigSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
100
100
|
entryPoint: z.ZodOptional<z.ZodString>;
|
|
101
101
|
packageManager: z.ZodDefault<z.ZodEnum<["pnpm", "yarn"]>>;
|
|
102
102
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"application">, z.ZodLiteral<"package">]>>;
|
|
103
|
-
}
|
|
103
|
+
}, "strip", z.ZodTypeAny, {
|
|
104
104
|
packageManager: "yarn" | "pnpm";
|
|
105
105
|
templateName: string;
|
|
106
106
|
destinationDir: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skuba",
|
|
3
|
-
"version": "11.0.0
|
|
3
|
+
"version": "11.0.0",
|
|
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",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"@esbuild-plugins/tsconfig-paths": "^0.1.0",
|
|
54
|
-
"@eslint/migrate-config": "
|
|
54
|
+
"@eslint/migrate-config": "~1.3.8",
|
|
55
55
|
"@jest/types": "^29.0.0",
|
|
56
56
|
"@octokit/graphql": "^8.0.0",
|
|
57
57
|
"@octokit/graphql-schema": "^15.3.0",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"tsx": "^4.16.2",
|
|
99
99
|
"typescript": "~5.8.0",
|
|
100
100
|
"zod": "^3.22.4",
|
|
101
|
-
"eslint-config-skuba": "6.0.0
|
|
101
|
+
"eslint-config-skuba": "6.0.0"
|
|
102
102
|
},
|
|
103
103
|
"devDependencies": {
|
|
104
104
|
"@changesets/cli": "2.29.3",
|
|
@@ -149,7 +149,7 @@
|
|
|
149
149
|
"entryPoint": "src/index.ts",
|
|
150
150
|
"template": null,
|
|
151
151
|
"type": "package",
|
|
152
|
-
"version": "
|
|
152
|
+
"version": "11.0.0"
|
|
153
153
|
},
|
|
154
154
|
"scripts": {
|
|
155
155
|
"build": "scripts/build.sh",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@opentelemetry/api": "^1.9.0",
|
|
19
19
|
"@opentelemetry/core": "^2.0.0",
|
|
20
20
|
"@opentelemetry/exporter-trace-otlp-grpc": "^0.200.0",
|
|
21
|
-
"@opentelemetry/instrumentation-aws-sdk": "^0.
|
|
21
|
+
"@opentelemetry/instrumentation-aws-sdk": "^0.52.0",
|
|
22
22
|
"@opentelemetry/instrumentation-http": "^0.200.0",
|
|
23
23
|
"@opentelemetry/propagator-b3": "^2.0.0",
|
|
24
24
|
"@opentelemetry/sdk-node": "^0.200.0",
|
|
@@ -23,7 +23,7 @@ configs:
|
|
|
23
23
|
concurrency: 1
|
|
24
24
|
plugins:
|
|
25
25
|
- *docker-ecr-cache
|
|
26
|
-
- docker-compose#v5.
|
|
26
|
+
- docker-compose#v5.9.0:
|
|
27
27
|
dependencies: false
|
|
28
28
|
run: app
|
|
29
29
|
environment:
|
|
@@ -52,7 +52,7 @@ steps:
|
|
|
52
52
|
GET_NPM_TOKEN: please
|
|
53
53
|
plugins:
|
|
54
54
|
- *docker-ecr-cache
|
|
55
|
-
- docker-compose#v5.
|
|
55
|
+
- docker-compose#v5.9.0:
|
|
56
56
|
run: app
|
|
57
57
|
environment:
|
|
58
58
|
- GITHUB_API_TOKEN
|