Skip to content

Commit 54d7a26

Browse files
committed
chore: wip
1 parent 9393c94 commit 54d7a26

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

storage/framework/cloud/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@
3838
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
3939
"files": ["README.md", "dist", "src"],
4040
"scripts": {
41-
"bootstrap": "npx cdk bootstrap",
42-
"deploy": "cd .. && bun run build && cd ./docs && bun run build && cd ../cloud && npx cdk deploy --require-approval never",
41+
"bootstrap": "bunx cdk bootstrap",
42+
"deploy": "cd .. && bun run build && cd ./docs && bun run build && cd ../cloud && bunx cdk deploy --require-approval never",
4343
"dev": "./dev local"
4444
},
4545
"dependencies": {

storage/framework/core/buddy/src/commands/cloud.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export function cloud(buddy: CLI) {
110110
}
111111

112112
if (options.diff) {
113-
const result = await runCommand('npx cdk diff', {
113+
const result = await runCommand('bunx cdk diff', {
114114
cwd: p.frameworkCloudPath(),
115115
stdin: 'pipe',
116116
})
@@ -238,7 +238,7 @@ export function cloud(buddy: CLI) {
238238
// sleep for 2 seconds to get the user to read the message
239239
await new Promise((resolve) => setTimeout(resolve, 2000))
240240

241-
const result = await runCommand(`npx cdk destroy`, {
241+
const result = await runCommand(`bunx cdk destroy`, {
242242
...options,
243243
cwd: p.frameworkCloudPath(),
244244
stdin: 'inherit',
@@ -508,7 +508,7 @@ export function cloud(buddy: CLI) {
508508

509509
const startTime = await intro('buddy cloud:diff')
510510

511-
const result = await runCommand('npx cdk diff', {
511+
const result = await runCommand('bunx cdk diff', {
512512
cwd: p.frameworkCloudPath(),
513513
stdin: 'pipe',
514514
})

storage/framework/core/cloud/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
4040
"files": ["README.md", "dist", "src"],
4141
"scripts": {
42-
"bootstrap": "npx cdk bootstrap",
43-
"deploy": "cd ../.. && bun run build && cd ../docs && bun run build && cd ../core/cloud && npx cdk deploy --require-approval never",
42+
"bootstrap": "bunx cdk bootstrap",
43+
"deploy": "cd ../.. && bun run build && cd ../docs && bun run build && cd ../core/cloud && bunx cdk deploy --require-approval never",
4444
"build": "bun build.ts",
4545
"build-edge": "bun build ./src/edge/origin-request.ts --outfile ./dist/origin-request.js",
4646
"typecheck": "bun --bun tsc --noEmit",

storage/framework/ide/vscode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
"vscode": "^1.93.0"
3232
},
3333
"scripts": {
34-
"package": "npx vsce package",
35-
"release": "npx vsce publish"
34+
"package": "bunx vsce package",
35+
"release": "bunx vsce publish"
3636
},
3737
"galleryBanner": {
3838
"color": "#d7e4f5",

0 commit comments

Comments
 (0)