skuba 10.2.0-config-20250421023131 → 10.2.0-config-20250421024010

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.
@@ -0,0 +1 @@
1
+ export { SkubaConfig } from '../lib/config';
@@ -0,0 +1 @@
1
+ module.exports = require('../lib/config');
@@ -0,0 +1 @@
1
+ export { SkubaConfig } from './types';
@@ -0,0 +1,29 @@
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 config_exports = {};
20
+ __export(config_exports, {
21
+ SkubaConfig: () => import_types.SkubaConfig
22
+ });
23
+ module.exports = __toCommonJS(config_exports);
24
+ var import_types = require("./types");
25
+ // Annotate the CommonJS export names for ESM import in node:
26
+ 0 && (module.exports = {
27
+ SkubaConfig
28
+ });
29
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../src/config/index.ts"],
4
+ "sourcesContent": ["export { SkubaConfig } from './types';\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,mBAA4B;",
6
+ "names": []
7
+ }
@@ -29,11 +29,11 @@ export declare const skubaConfigSchema: z.ZodObject<{
29
29
  */
30
30
  entryPoint: z.ZodOptional<z.ZodString>;
31
31
  }, "strip", z.ZodTypeAny, {
32
- assets?: string[] | undefined;
33
32
  entryPoint?: string | undefined;
34
- }, {
35
33
  assets?: string[] | undefined;
34
+ }, {
36
35
  entryPoint?: string | undefined;
36
+ assets?: string[] | undefined;
37
37
  }>;
38
38
  export declare const SkubaConfig: {
39
39
  assets: {
package/lib/index.d.ts CHANGED
@@ -14,7 +14,6 @@ export * as Git from './api/git';
14
14
  export * as GitHub from './api/github';
15
15
  export * as Jest from './api/jest';
16
16
  export * as Net from './api/net';
17
- export { SkubaConfig } from './config/types';
18
17
  declare global {
19
18
  namespace WebAssembly {
20
19
  interface Module {
package/lib/index.js CHANGED
@@ -32,8 +32,7 @@ __export(index_exports, {
32
32
  Git: () => Git,
33
33
  GitHub: () => GitHub,
34
34
  Jest: () => Jest,
35
- Net: () => Net,
36
- SkubaConfig: () => import_types.SkubaConfig
35
+ Net: () => Net
37
36
  });
38
37
  module.exports = __toCommonJS(index_exports);
39
38
  var Buildkite = __toESM(require("./api/buildkite"));
@@ -41,14 +40,12 @@ var Git = __toESM(require("./api/git"));
41
40
  var GitHub = __toESM(require("./api/github"));
42
41
  var Jest = __toESM(require("./api/jest"));
43
42
  var Net = __toESM(require("./api/net"));
44
- var import_types = require("./config/types");
45
43
  // Annotate the CommonJS export names for ESM import in node:
46
44
  0 && (module.exports = {
47
45
  Buildkite,
48
46
  Git,
49
47
  GitHub,
50
48
  Jest,
51
- Net,
52
- SkubaConfig
49
+ Net
53
50
  });
54
51
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/index.ts"],
4
- "sourcesContent": ["/**\n * Entry point for the Node.js development API.\n *\n * This is where skuba imports point to:\n *\n * ```typescript\n * import { Net } from 'skuba';\n *\n * const { Net } = require('skuba');\n * ```\n */\n\nexport * as Buildkite from './api/buildkite';\nexport * as Git from './api/git';\nexport * as GitHub from './api/github';\nexport * as Jest from './api/jest';\nexport * as Net from './api/net';\nexport { SkubaConfig } from './config/types';\n\n// evanw/esbuild#2388\ndeclare global {\n // eslint-disable-next-line @typescript-eslint/no-namespace\n namespace WebAssembly {\n // eslint-disable-next-line @typescript-eslint/no-empty-object-type\n interface Module {}\n }\n}\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA,gBAA2B;AAC3B,UAAqB;AACrB,aAAwB;AACxB,WAAsB;AACtB,UAAqB;AACrB,mBAA4B;",
4
+ "sourcesContent": ["/**\n * Entry point for the Node.js development API.\n *\n * This is where skuba imports point to:\n *\n * ```typescript\n * import { Net } from 'skuba';\n *\n * const { Net } = require('skuba');\n * ```\n */\n\nexport * as Buildkite from './api/buildkite';\nexport * as Git from './api/git';\nexport * as GitHub from './api/github';\nexport * as Jest from './api/jest';\nexport * as Net from './api/net';\n\n// evanw/esbuild#2388\ndeclare global {\n // eslint-disable-next-line @typescript-eslint/no-namespace\n namespace WebAssembly {\n // eslint-disable-next-line @typescript-eslint/no-empty-object-type\n interface Module {}\n }\n}\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA,gBAA2B;AAC3B,UAAqB;AACrB,aAAwB;AACxB,WAAsB;AACtB,UAAqB;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skuba",
3
- "version": "10.2.0-config-20250421023131",
3
+ "version": "10.2.0-config-20250421024010",
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",
@@ -99,7 +99,7 @@
99
99
  "tsx": "^4.16.2",
100
100
  "typescript": "~5.8.0",
101
101
  "zod": "^3.22.4",
102
- "eslint-config-skuba": "5.1.4-config-20250421023131"
102
+ "eslint-config-skuba": "5.1.4-config-20250421024010"
103
103
  },
104
104
  "devDependencies": {
105
105
  "@changesets/cli": "2.28.1",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "devDependencies": {
19
19
  "@types/node": "^22.13.10",
20
- "skuba": "10.2.0-config-20250421023131"
20
+ "skuba": "10.2.0-config-20250421024010"
21
21
  },
22
22
  "packageManager": "pnpm@10.7.1",
23
23
  "engines": {
@@ -36,7 +36,7 @@
36
36
  "constructs": "^10.0.17",
37
37
  "datadog-cdk-constructs-v2": "^2.0.0",
38
38
  "pino-pretty": "^13.0.0",
39
- "skuba": "10.2.0-config-20250421023131"
39
+ "skuba": "10.2.0-config-20250421024010"
40
40
  },
41
41
  "packageManager": "pnpm@10.7.1",
42
42
  "engines": {