@gnsx/genesys.agent.cli 1.0.6 → 1.0.7

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,3 @@
1
+ declare const _default: import("tsup").Options | import("tsup").Options[] | ((overrideOptions: import("tsup").Options) => import("tsup").Options | import("tsup").Options[] | Promise<import("tsup").Options | import("tsup").Options[]>);
2
+ export default _default;
3
+ //# sourceMappingURL=tsup.config.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tsup.config.d.ts","sourceRoot":"","sources":["../tsup.config.ts"],"names":[],"mappings":";AAEA,wBAUG"}
@@ -0,0 +1,13 @@
1
+ import { defineConfig } from 'tsup';
2
+ export default defineConfig({
3
+ entry: ['src/launcher.ts'],
4
+ outDir: 'dist/bundle',
5
+ format: 'esm',
6
+ platform: 'node',
7
+ bundle: true,
8
+ splitting: false,
9
+ sourcemap: true,
10
+ clean: true,
11
+ external: ['@mariozechner/*', 'commander', 'dotenv'],
12
+ });
13
+ //# sourceMappingURL=tsup.config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tsup.config.js","sourceRoot":"","sources":["../tsup.config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAEpC,eAAe,YAAY,CAAC;IAC1B,KAAK,EAAE,CAAC,iBAAiB,CAAC;IAC1B,MAAM,EAAE,aAAa;IACrB,MAAM,EAAE,KAAK;IACb,QAAQ,EAAE,MAAM;IAChB,MAAM,EAAE,IAAI;IACZ,SAAS,EAAE,KAAK;IAChB,SAAS,EAAE,IAAI;IACf,KAAK,EAAE,IAAI;IACX,QAAQ,EAAE,CAAC,iBAAiB,EAAE,WAAW,EAAE,QAAQ,CAAC;CACrD,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@gnsx/genesys.agent.cli",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "type": "module",
5
5
  "description": "CLI interface for the Genesys agent",
6
6
  "publishConfig": {
7
7
  "access": "public"
8
8
  },
9
9
  "bin": {
10
- "genesys": "./dist/src/launcher.js"
10
+ "genesys": "./dist/bundle/launcher.js"
11
11
  },
12
12
  "piConfig": {
13
13
  "name": "genesys"
@@ -28,13 +28,15 @@
28
28
  "dotenv": "^17.2.3"
29
29
  },
30
30
  "devDependencies": {
31
+ "tsup": "^8.5.1",
31
32
  "@gnsx/dev-tools": "1.0.0",
32
33
  "@gnsx/cli-utils": "1.0.0"
33
34
  },
34
35
  "license": "UNLICENSED",
35
36
  "scripts": {
36
37
  "compile": "run-cmd tsc --build",
37
- "build": "run-cmd tsc --build && run-cmd tsx scripts/postbuild.ts",
38
+ "bundle": "tsup",
39
+ "build": "run-cmd tsc --build && pnpm bundle && run-cmd tsx scripts/postbuild.ts",
38
40
  "dev": "tsx src/launcher.ts",
39
41
  "lint": "run-cmd run-eslint .",
40
42
  "postinstall": "tsx scripts/postinstall.ts"