Skip to content
4 changes: 2 additions & 2 deletions .github/workflows/buddy-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:

- name: Setup PHP and Composer (if needed)
if: ${{ hashFiles('composer.json') != '' }}
uses: shivammathur/setup-php@v2
uses: shivammathur/setup-php@2.36.0
with:
php-version: '8.4'
tools: composer
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:

- name: Setup PHP and Composer (if needed)
if: ${{ hashFiles('composer.json') != '' }}
uses: shivammathur/setup-php@v2
uses: shivammathur/setup-php@2.36.0
with:
php-version: '8.4'
tools: composer
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install Bun
uses: oven-sh/setup-bun@v2
uses: oven-sh/setup-bun@v2.0.2

- name: Use cached node_modules
uses: actions/cache@v4
Expand All @@ -44,7 +44,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install Bun
uses: oven-sh/setup-bun@v2
uses: oven-sh/setup-bun@v2.0.2

- name: Use cached node_modules
uses: actions/cache@v4
Expand All @@ -67,7 +67,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install Bun
uses: oven-sh/setup-bun@v2
uses: oven-sh/setup-bun@v2.0.2

- name: Use cached node_modules
uses: actions/cache@v4
Expand All @@ -90,7 +90,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install Bun
uses: oven-sh/setup-bun@v2
uses: oven-sh/setup-bun@v2.0.2

- name: Use cached node_modules
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

- name: Attach Binaries
uses: stacksjs/action-releaser@v1.1.0
uses: stacksjs/action-releaser@v1.2.6
with:
files: |
packages/ts-starter-monorepo/bin/ts-starter-monorepo-linux-x64.zip
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "module",
"version": "0.0.0",
"description": "A simple TypeScript starter kit using Bun.",
"author": "Chris Breuer <chris@stacksjs.org>",
"author": "Chris Breuer <chris@stacksjs.com>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/ts-cloud#readme",
"repository": {
Expand Down Expand Up @@ -59,7 +59,7 @@
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"better-dx": "^0.2.3"
"better-dx": "^0.2.5"
},
"workspaces": [
"packages/*"
Expand All @@ -71,5 +71,8 @@
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
},
"dependencies": {
"jszip": "^3.10.1"
}
}
4 changes: 2 additions & 2 deletions packages/aws-types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"type": "module",
"description": "AWS CloudFormation resource type definitions (without AWS SDK)",
"author": "Chris Breuer <chris@stacksjs.org>",
"author": "Chris Breuer <chris@stacksjs.com>",
"license": "MIT",
"exports": {
".": {
Expand All @@ -22,6 +22,6 @@
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"typescript": "^5.6.3"
"typescript": "^5.9.3"
}
}
17 changes: 15 additions & 2 deletions packages/ts-cloud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "module",
"version": "0.0.0",
"description": "A lightweight, performant infrastructure-as-code library and CLI for deploying both server-based (EC2) and serverless applications.",
"author": "Chris Breuer <chris@stacksjs.org>",
"author": "Chris Breuer <chris@stacksjs.com>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/cloud#readme",
"repository": {
Expand All @@ -30,6 +30,18 @@
"types": "./dist/index.d.ts",
"import": "./dist/src/index.js"
},
"./aws": {
"types": "./src/aws/index.ts",
"import": "./src/aws/index.ts"
},
"./dns": {
"types": "./src/dns/index.ts",
"import": "./src/dns/index.ts"
},
"./push": {
"types": "./src/push/index.ts",
"import": "./src/push/index.ts"
},
"./*": {
"import": "./dist/*"
}
Expand Down Expand Up @@ -66,9 +78,10 @@
"test": "bun test"
},
"dependencies": {
"@ts-cloud/aws-types": "workspace:*",
"@ts-cloud/core": "workspace:*",
"@ts-cloud/types": "workspace:*",
"@ts-cloud/aws-types": "workspace:*"
"fast-xml-parser": "^5.3.3"
},
"devDependencies": {
"bunfig": "^0.15.6",
Expand Down