also looking at this
feat(operations): fleet inventory, attach preflight, and the exports that were missing
#192
11 files
+1313
-5
| @@ -5,8 +5,8 @@ const __dirname = import.meta.dirname | ||
| 5 | 5 | async function build() { |
| 6 | 6 | // Build the library root AND every subpath entry point declared in the |
| 7 | 7 | // package.json exports map ("./aws", "./deploy", "./dns", "./drivers", |
| 8 | // "./push", "./spend", "./protection"). Bundling only src/index.ts leaves | |
| 9 | // those subpaths as .d.ts-only | |
| 8 | // "./operations", "./push", "./spend", "./protection"). Bundling only | |
| 9 | // src/index.ts leaves those subpaths as .d.ts-only | |
| 10 | 10 | // in dist, so `import '@stacksjs/ts-cloud/drivers'` fails at runtime for |
| 11 | 11 | // consumers. Splitting keeps shared code in chunks instead of duplicating |
| 12 | 12 | // it into each subpath bundle. |
| @@ -17,6 +17,7 @@ async function build() { | ||
| 17 | 17 | join(__dirname, 'src/deploy/index.ts'), |
| 18 | 18 | join(__dirname, 'src/dns/index.ts'), |
| 19 | 19 | join(__dirname, 'src/drivers/index.ts'), |
| 20 | join(__dirname, 'src/operations/index.ts'), | |
| 20 | 21 | join(__dirname, 'src/push/index.ts'), |
| 21 | 22 | join(__dirname, 'src/spend/index.ts'), |
| 22 | 23 | join(__dirname, 'src/protection/index.ts'), |