@ts-cloud/core 0.4.0 → 0.4.1

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 (2) hide show
  1. package/dist/index.js +1 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -46052,8 +46052,7 @@ function buildBunRuntimeLayerZip(options) {
46052
46052
  const step = options.onStep ?? (() => {});
46053
46053
  const stage = mkdtempSync2(join7(tmpdir2(), "tscloud-bun-layer-"));
46054
46054
  try {
46055
- const tag = version ? `bun-v${version}` : "latest";
46056
- const url = `https://github.com/oven-sh/bun/releases/download/${tag}/${bunArch}.zip`;
46055
+ const url = version ? `https://github.com/oven-sh/bun/releases/download/bun-v${version}/${bunArch}.zip` : `https://github.com/oven-sh/bun/releases/latest/download/${bunArch}.zip`;
46057
46056
  step(`downloading Bun ${version || "latest"} (${architecture})`);
46058
46057
  const zipPath = join7(stage, "bun.zip");
46059
46058
  fetchToFile(url, zipPath);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ts-cloud/core",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "type": "module",
5
5
  "description": "Core CloudFormation generation library for ts-cloud",
6
6
  "author": "Chris Breuer <chris@stacksjs.com>",
@@ -31,7 +31,7 @@
31
31
  "typecheck": "tsc --noEmit"
32
32
  },
33
33
  "dependencies": {
34
- "@ts-cloud/aws-types": "0.4.0"
34
+ "@ts-cloud/aws-types": "0.4.1"
35
35
  },
36
36
  "devDependencies": {
37
37
  "typescript": "^5.9.3"